diff options
| author | Richard M. Stallman | 2005-06-17 14:10:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-06-17 14:10:09 +0000 |
| commit | b7da00ba48488d629814b441c5e0b0e683d33d9e (patch) | |
| tree | 629ffbe95b6db4b0de2821c7f33e6b9612f68d31 /src | |
| parent | 072d84a6c24258f78a772a54cbdfaa96efcca85b (diff) | |
| download | emacs-b7da00ba48488d629814b441c5e0b0e683d33d9e.tar.gz emacs-b7da00ba48488d629814b441c5e0b0e683d33d9e.zip | |
(get_next_display_element): Reverse test of Vshow_nonbreak_escape.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 22 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
2 files changed, 22 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 99a208586a5..fbb8d887533 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2005-06-17 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (get_next_display_element): Reverse | ||
| 4 | test of Vshow_nonbreak_escape. | ||
| 5 | |||
| 6 | * term.c (produce_special_glyphs): Use spec_glyph_lookup_face. | ||
| 7 | |||
| 8 | * keyboard.c (read_char): Call restore_getcjmp after jump occurs. | ||
| 9 | |||
| 10 | * dispnew.c (spec_glyph_lookup_face): New function. | ||
| 11 | (build_frame_matrix_from_leaf_window): Use it. | ||
| 12 | |||
| 13 | * dispextern.h (spec_glyph_lookup_face): Add declaration. | ||
| 14 | |||
| 15 | * buffer.c (syms_of_buffer) <cursor-type>: Doc fix. | ||
| 16 | |||
| 17 | 2005-06-12 Richard M. Stallman <rms@gnu.org> | ||
| 18 | |||
| 19 | * keyboard.c (read_char): After catching a longjmp, | ||
| 20 | call restore_getcjmp. | ||
| 21 | |||
| 1 | 2005-06-17 Juanma Barranquero <lekktu@gmail.com> | 22 | 2005-06-17 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 23 | ||
| 3 | * xselect.c (lisp_data_to_selection_data): Fix spelling. | 24 | * xselect.c (lisp_data_to_selection_data): Fix spelling. |
| @@ -105,7 +126,6 @@ | |||
| 105 | 126 | ||
| 106 | * xdisp.c (note_mode_line_or_margin_highlight): Call clear_mouse_face | 127 | * xdisp.c (note_mode_line_or_margin_highlight): Call clear_mouse_face |
| 107 | when mouse_face is not given. | 128 | when mouse_face is not given. |
| 108 | Remove unnecessary tabs. | ||
| 109 | 129 | ||
| 110 | 2005-06-09 Luc Teirlinck <teirllm@auburn.edu> | 130 | 2005-06-09 Luc Teirlinck <teirllm@auburn.edu> |
| 111 | 131 | ||
diff --git a/src/xdisp.c b/src/xdisp.c index 7ce461c1897..4128f354442 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -5152,7 +5152,7 @@ get_next_display_element (it) | |||
| 5152 | /* Handle non-break space in the mode where it only gets | 5152 | /* Handle non-break space in the mode where it only gets |
| 5153 | highlighting. */ | 5153 | highlighting. */ |
| 5154 | 5154 | ||
| 5155 | if (! EQ (Vshow_nonbreak_escape, Qt) | 5155 | if (EQ (Vshow_nonbreak_escape, Qt) |
| 5156 | && (it->c == 0x8a0 || it->c == 0x920 | 5156 | && (it->c == 0x8a0 || it->c == 0x920 |
| 5157 | || it->c == 0xe20 || it->c == 0xf20)) | 5157 | || it->c == 0xe20 || it->c == 0xf20)) |
| 5158 | { | 5158 | { |