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

index 4e9a0798673f1b1453ac06d0a73bbfb57c4e652e..067a6291c3e8f10ac755b6565601b94fbe42e49c 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-16  Glenn Morris  <rgm@gnu.org>
+
+       * ps-print.el (ps-font-size): Doc fix.
+
 2007-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * vc-bzr.el: Don't fiddle with vc-handled-backend.
index 8b46243a43af45357b33e6a0d9c920c757dfb5fc..d829332f55c7b490c35b6050384b87e1d24c0873 100644 (file)
@@ -2169,15 +2169,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.  */