diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index b27ad5f8a09..5fb66ffb101 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Interface definitions for display code. | 1 | /* Interface definitions for display code. |
| 2 | Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999, 2000, 2001 | 2 | Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -2204,6 +2204,10 @@ extern EMACS_INT tool_bar_button_relief; | |||
| 2204 | Terminal Capabilities | 2204 | Terminal Capabilities |
| 2205 | ***********************************************************************/ | 2205 | ***********************************************************************/ |
| 2206 | 2206 | ||
| 2207 | /* Each of these is a bit representing a terminal `capability' (bold, inverse, | ||
| 2208 | etc). They are used to when calling `tty_capable_p' to ask what a terminal | ||
| 2209 | supports. */ | ||
| 2210 | |||
| 2207 | #define TTY_CAP_INVERSE 0x01 | 2211 | #define TTY_CAP_INVERSE 0x01 |
| 2208 | #define TTY_CAP_UNDERLINE 0x02 | 2212 | #define TTY_CAP_UNDERLINE 0x02 |
| 2209 | #define TTY_CAP_BOLD 0x04 | 2213 | #define TTY_CAP_BOLD 0x04 |