* term.c (syms_of_term): Don't initialize default_orig_pair,

default_set_foreground and default_set_background on Windows.
This commit is contained in:
Juanma Barranquero 2008-07-25 22:33:59 +00:00
parent 11856d4d74
commit dea101f699
2 changed files with 7 additions and 0 deletions

View 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

View 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 */
}