X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/ed7f1a6c5caaf4159125c08db5d18c5471fdd032..76abf5e5a55899a0b3f8851fce7406858978e9a6:/src/termchar.h diff --git a/src/termchar.h b/src/termchar.h index 035974a8ce..5c57593c04 100644 --- a/src/termchar.h +++ b/src/termchar.h @@ -1,5 +1,5 @@ /* Flags and parameters describing terminal's characteristics. - Copyright (C) 1985-1986, 2001-2011 Free Software Foundation, Inc. + Copyright (C) 1985-1986, 2001-2012 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -124,8 +124,8 @@ struct tty_display_info each as vpos and hpos) */ const char *TS_enter_bold_mode; /* "md" -- turn on bold (extra bright mode). */ + const char *TS_enter_italic_mode; /* "ZH" -- turn on italics mode. */ const char *TS_enter_dim_mode; /* "mh" -- turn on half-bright mode. */ - const char *TS_enter_blink_mode; /* "mb" -- enter blinking mode. */ const char *TS_enter_reverse_mode; /* "mr" -- enter reverse video mode. */ const char *TS_exit_underline_mode; /* "us" -- start underlining. */ const char *TS_enter_underline_mode; /* "ue" -- end underlining. */ @@ -207,6 +207,6 @@ extern struct tty_display_info *tty_list; (((f)->output_method == output_termcap \ || (f)->output_method == output_msdos_raw) \ ? (f)->terminal->display_info.tty \ - : (abort(), (struct tty_display_info *) 0)) + : (emacs_abort (), (struct tty_display_info *) 0)) #define CURTTY() FRAME_TTY (SELECTED_FRAME())