diff --git a/src/ChangeLog b/src/ChangeLog index c23aadee7d8..3e592022db6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-07-25 Juanma Barranquero + + * 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 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to diff --git a/src/term.c b/src/term.c index 03fa801252f..71e0f557f29 100644 --- a/src/term.c +++ b/src/term.c @@ -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 */ }