aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorJuanma Barranquero2008-07-25 22:33:59 +0000
committerJuanma Barranquero2008-07-25 22:33:59 +0000
commitdea101f699be7433af808ce070cf49a1fcf49f9d (patch)
tree23534fc25d43d3acaf9dce74d930fb05cfae4cfa /src/term.c
parent11856d4d74e6670f2b60c277fab8a323588461a1 (diff)
downloademacs-dea101f699be7433af808ce070cf49a1fcf49f9d.tar.gz
emacs-dea101f699be7433af808ce070cf49a1fcf49f9d.zip
* term.c (syms_of_term): Don't initialize default_orig_pair,
default_set_foreground and default_set_background on Windows.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c2
1 files changed, 2 insertions, 0 deletions
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