aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/term.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c23aadee7d8..3e592022db6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12008-07-25 Juanma Barranquero <lekktu@gmail.com>
2
3 * term.c (syms_of_term): Don't initialize default_orig_pair,
4 default_set_foreground and default_set_background on Windows.
5
12008-07-25 Jason Rumney <jasonr@gnu.org> 62008-07-25 Jason Rumney <jasonr@gnu.org>
2 7
3 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to 8 * 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. */);
3987 staticpro (&mouse_face_window); 3987 staticpro (&mouse_face_window);
3988#endif /* HAVE_GPM */ 3988#endif /* HAVE_GPM */
3989 3989
3990#ifndef WINDOWSNT
3990 default_orig_pair = NULL; 3991 default_orig_pair = NULL;
3991 default_set_foreground = NULL; 3992 default_set_foreground = NULL;
3992 default_set_background = NULL; 3993 default_set_background = NULL;
3994#endif /* WINDOWSNT */
3993} 3995}
3994 3996
3995 3997