]> git.eshelyaron.com Git - emacs.git/commitdiff
Philippe Waroquiers <philippe.waroquiers at eurocontrol.int>
authorGlenn Morris <rgm@gnu.org>
Wed, 15 Aug 2007 03:20:17 +0000 (03:20 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 15 Aug 2007 03:20:17 +0000 (03:20 +0000)
(tty_default_color_capabilities): Explicitly initialize static
variables in file scope, to avoid HPUX compiler problem.

src/ChangeLog
src/term.c

index e3c212924b3bd4117865bc6df9e1971866d09c40..0ae50d2fa67063781622989ada5d2523910f06c5 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-15  Philippe Waroquiers  <philippe.waroquiers@eurocontrol.int>
+
+       * term.c (tty_default_color_capabilities): Explicitly initialize
+       static variables in file scope, to avoid HPUX compiler problem.
+
 2007-08-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * gtkutil.c (update_frame_tool_bar): Use -1 as index
index 798fc37ca46403129ed3f87dd8d2eada441ed50f..624e1c82eddd6316246c07a98dda5f1eb94e1c86 100644 (file)
@@ -2238,15 +2238,19 @@ DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
 
 #ifndef WINDOWSNT
 
+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;
+
 /* Save or restore the default color-related capabilities of this
    terminal.  */
 static void
 tty_default_color_capabilities (save)
      int save;
 {
-  static char
-    *default_orig_pair, *default_set_foreground, *default_set_background;
-  static int default_max_colors, default_max_pairs, default_no_color_video;
 
   if (save)
     {