diff options
| author | Juanma Barranquero | 2008-07-25 22:33:59 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-07-25 22:33:59 +0000 |
| commit | dea101f699be7433af808ce070cf49a1fcf49f9d (patch) | |
| tree | 23534fc25d43d3acaf9dce74d930fb05cfae4cfa | |
| parent | 11856d4d74e6670f2b60c277fab8a323588461a1 (diff) | |
| download | emacs-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.
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/term.c | 2 |
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 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-07-25 Jason Rumney <jasonr@gnu.org> | 6 | 2008-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 | ||