From: Stefan Monnier Date: Thu, 24 Mar 2005 14:04:19 +0000 (+0000) Subject: (get_next_display_element): Also use `\ ' and `\-' for latin-9. X-Git-Tag: ttn-vms-21-2-B4~1577 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=66347da75fda602a6d0dbe8f3773bf9d056360a0;p=emacs.git (get_next_display_element): Also use `\ ' and `\-' for latin-9. --- diff --git a/src/ChangeLog b/src/ChangeLog index 2354e597844..c0e782eb6f1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-03-24 Stefan + + * xdisp.c (get_next_display_element): Also use `\ ' & `\-' for latin-9. + 2005-03-22 Kim F. Storm * xfaces.c (lookup_derived_face): Add arg SIGNAL_P. @@ -17,7 +21,7 @@ 2005-03-22 David Kastrup * textprop.c (Fnext_char_property_change) - (Fprevious_char_property_change): allow marker as limit. + (Fprevious_char_property_change): Allow marker as limit. (Fnext_single_char_property_change) (Fprevious_single_char_property_change): Check that limit is a number in strings. @@ -51,8 +55,7 @@ 2005-03-17 Kenichi Handa - * coding.c (syms_of_coding): Docstring of coding-category-list - fixed. + * coding.c (syms_of_coding): Docstring of coding-category-list fixed. 2005-03-17 Stefan Monnier diff --git a/src/xdisp.c b/src/xdisp.c index a8559caa8d8..bca4115f4b1 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -5075,7 +5075,8 @@ get_next_display_element (it) && it->len == 1) || !CHAR_PRINTABLE_P (it->c) || (!NILP (Vshow_nonbreak_escape) - && (it->c == 0x8ad || it->c == 0x8a0))) + && (it->c == 0x8ad || it->c == 0x8a0 + || it->c == 0xf2d || it->c == 0xf20))) : (it->c >= 127 && (!unibyte_display_via_language_environment || it->c == unibyte_char_to_multibyte (it->c)))))