]> git.eshelyaron.com Git - emacs.git/commitdiff
(get_next_display_element): Also use `\ ' and `\-' for latin-9.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 24 Mar 2005 14:04:19 +0000 (14:04 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 24 Mar 2005 14:04:19 +0000 (14:04 +0000)
src/ChangeLog
src/xdisp.c

index 2354e597844bb252e7c44543c81afd8bfc46e62a..c0e782eb6f19290ddb81a664c9c85cc10014f0bd 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-24  Stefan  <monnier@iro.umontreal.ca>
+
+       * xdisp.c (get_next_display_element): Also use `\ ' & `\-' for latin-9.
+
 2005-03-22  Kim F. Storm  <storm@cua.dk>
 
        * xfaces.c (lookup_derived_face): Add arg SIGNAL_P.
@@ -17,7 +21,7 @@
 2005-03-22  David Kastrup  <dak@gnu.org>
 
        * 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  <handa@m17n.org>
 
-       * 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  <monnier@iro.umontreal.ca>
 
index a8559caa8d89a1794fc390238f68723306ee5a43..bca4115f4b1ef04c3b848118159e006ce0f0f38f 100644 (file)
@@ -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)))))