]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak previous change (don't init statics).
authorGlenn Morris <rgm@gnu.org>
Thu, 16 Aug 2007 03:18:08 +0000 (03:18 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 16 Aug 2007 03:18:08 +0000 (03:18 +0000)
lisp/ChangeLog
src/ChangeLog
src/term.c

index 88346057d5dabeb21082ea57deba6435998e2657..659e3a903308c4b424a829a9485e49aa520218bb 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-16  Glenn Morris  <rgm@gnu.org>
+
+       * ps-print.el (ps-font-size): Doc fix.
+
 2007-08-16  Richard Stallman  <rms@gnu.org>
 
        * emacs-lisp/copyright.el (copyright-names-regexp): Add custom group.
index 2f006840cbcdf6d6ec77a9886a5a97291f5b51b3..7909260228eebda64da9887e1cb3be4b1bfb0bf7 100644 (file)
@@ -8,8 +8,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.
+       * term.c (tty_default_color_capabilities): Declare static
+       variables in file scope, to avoid HPUX compiler problem.
 
 2007-08-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
index 3b43163bb5720b481d26ace418f2b7c6b3d50ab1..63455f525da3195dd9c0e6500eb8c2016a1c22af 100644 (file)
@@ -2238,15 +2238,15 @@ DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
 
 #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.  */