comparison src/term.c @ 82410:fa95c556638e

Tweak previous change (don't init statics).
author Glenn Morris <rgm@gnu.org>
date Thu, 16 Aug 2007 03:15:08 +0000
parents 1822f754a65a
children 2a69b973fae2 aaccdab0ee26
comparison
equal deleted inserted replaced
82409:42f096633e23 82410:fa95c556638e
2236 return make_number (TN_max_colors); 2236 return make_number (TN_max_colors);
2237 } 2237 }
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. */
2253 static void 2253 static void
2254 tty_default_color_capabilities (save) 2254 tty_default_color_capabilities (save)