# HG changeset patch # User Glenn Morris # Date 1187234041 0 # Node ID a23949b99eb1a9bea310dce4f1f3cf8962b88d41 # Parent adeee3bded63a4d389d5eee47c094a068205f8c7 Tweak previous change (don't init statics). diff -r adeee3bded63 -r a23949b99eb1 src/term.c --- a/src/term.c Thu Aug 16 03:13:33 2007 +0000 +++ b/src/term.c Thu Aug 16 03:14:01 2007 +0000 @@ -2169,15 +2169,15 @@ #ifndef WINDOWSNT -/* Explicitly initialized here rather than in the function to work - around an HPUX compiler bug (?). See +/* Declare here rather than in the function, as in the rest of Emacs, + to work around an HPUX compiler bug (?). See http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */ -static int default_max_colors = 0; -static int default_max_pairs = 0; -static int default_no_color_video = 0; -static char *default_orig_pair = NULL; -static char *default_set_foreground = NULL; -static char *default_set_background = NULL; +static int default_max_colors; +static int default_max_pairs; +static int default_no_color_video; +static char *default_orig_pair; +static char *default_set_foreground; +static char *default_set_background; /* Save or restore the default color-related capabilities of this terminal. */