]> git.eshelyaron.com Git - emacs.git/commitdiff
* term.c (syms_of_term): Don't initialize default_orig_pair,
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 25 Jul 2008 22:33:59 +0000 (22:33 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 25 Jul 2008 22:33:59 +0000 (22:33 +0000)
  default_set_foreground and default_set_background on Windows.

src/ChangeLog
src/term.c

index c23aadee7d840eea2763c0ea7395c8e503d153cb..3e592022db6313665a7a3fc42abd201e32967662 100644 (file)
@@ -1,3 +1,8 @@
+2008-07-25  Juanma Barranquero  <lekktu@gmail.com>
+
+       * term.c (syms_of_term): Don't initialize default_orig_pair,
+       default_set_foreground and default_set_background on Windows.
+
 2008-07-25  Jason Rumney  <jasonr@gnu.org>
 
         * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
index 03fa801252f2ff68b8df4d8cfc8ac27c311364d8..71e0f557f29ac502e48f219b8aaa590dc037771b 100644 (file)
@@ -3987,9 +3987,11 @@ bigger, or it may make it blink, or it may do nothing at all.  */);
   staticpro (&mouse_face_window);
 #endif /* HAVE_GPM */
 
+#ifndef WINDOWSNT
   default_orig_pair = NULL;
   default_set_foreground = NULL;
   default_set_background = NULL;
+#endif /* WINDOWSNT */
 }