diff options
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/term.c b/src/term.c index 3b43163bb57..63455f525da 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -2238,15 +2238,15 @@ DEFUN ("tty-display-color-cells", Ftty_display_color_cells, | |||
| 2238 | 2238 | ||
| 2239 | #ifndef WINDOWSNT | 2239 | #ifndef WINDOWSNT |
| 2240 | 2240 | ||
| 2241 | /* Explicitly initialized here rather than in the function to work | 2241 | /* Declare here rather than in the function, as in the rest of Emacs, |
| 2242 | around an HPUX compiler bug (?). See | 2242 | to work around an HPUX compiler bug (?). See |
| 2243 | http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */ | 2243 | http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */ |
| 2244 | static int default_max_colors = 0; | 2244 | static int default_max_colors; |
| 2245 | static int default_max_pairs = 0; | 2245 | static int default_max_pairs; |
| 2246 | static int default_no_color_video = 0; | 2246 | static int default_no_color_video; |
| 2247 | static char *default_orig_pair = NULL; | 2247 | static char *default_orig_pair; |
| 2248 | static char *default_set_foreground = NULL; | 2248 | static char *default_set_foreground; |
| 2249 | static char *default_set_background = NULL; | 2249 | static char *default_set_background; |
| 2250 | 2250 | ||
| 2251 | /* Save or restore the default color-related capabilities of this | 2251 | /* Save or restore the default color-related capabilities of this |
| 2252 | terminal. */ | 2252 | terminal. */ |