Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b7da00ba
Commit
b7da00ba
authored
Jun 17, 2005
by
Richard M. Stallman
Browse files
(get_next_display_element): Reverse test of Vshow_nonbreak_escape.
parent
072d84a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
src/ChangeLog
src/ChangeLog
+21
-1
src/xdisp.c
src/xdisp.c
+1
-1
No files found.
src/ChangeLog
View file @
b7da00ba
2005-06-17 Richard M. Stallman <rms@gnu.org>
* xdisp.c (get_next_display_element): Reverse
test of Vshow_nonbreak_escape.
* term.c (produce_special_glyphs): Use spec_glyph_lookup_face.
* keyboard.c (read_char): Call restore_getcjmp after jump occurs.
* dispnew.c (spec_glyph_lookup_face): New function.
(build_frame_matrix_from_leaf_window): Use it.
* dispextern.h (spec_glyph_lookup_face): Add declaration.
* buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
2005-06-12 Richard M. Stallman <rms@gnu.org>
* keyboard.c (read_char): After catching a longjmp,
call restore_getcjmp.
2005-06-17 Juanma Barranquero <lekktu@gmail.com>
* xselect.c (lisp_data_to_selection_data): Fix spelling.
...
...
@@ -105,7 +126,6 @@
* xdisp.c (note_mode_line_or_margin_highlight): Call clear_mouse_face
when mouse_face is not given.
Remove unnecessary tabs.
2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
...
...
src/xdisp.c
View file @
b7da00ba
...
...
@@ -5152,7 +5152,7 @@ get_next_display_element (it)
/* Handle non-break space in the mode where it only gets
highlighting. */
if (
!
EQ (Vshow_nonbreak_escape, Qt)
if (EQ (Vshow_nonbreak_escape, Qt)
&& (it->c == 0x8a0 || it->c == 0x920
|| it->c == 0xe20 || it->c == 0xf20))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment