aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2005-03-24 14:04:19 +0000
committerStefan Monnier2005-03-24 14:04:19 +0000
commit66347da75fda602a6d0dbe8f3773bf9d056360a0 (patch)
tree52b9fac665d8977748c2e5fbd1be7705c8a49be0 /src
parent215a5cd026c15226ac2f00b123b6776feb1521dd (diff)
downloademacs-66347da75fda602a6d0dbe8f3773bf9d056360a0.tar.gz
emacs-66347da75fda602a6d0dbe8f3773bf9d056360a0.zip
(get_next_display_element): Also use `\ ' and `\-' for latin-9.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
-rw-r--r--src/xdisp.c3
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2354e597844..c0e782eb6f1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12005-03-24 Stefan <monnier@iro.umontreal.ca>
2
3 * xdisp.c (get_next_display_element): Also use `\ ' & `\-' for latin-9.
4
12005-03-22 Kim F. Storm <storm@cua.dk> 52005-03-22 Kim F. Storm <storm@cua.dk>
2 6
3 * xfaces.c (lookup_derived_face): Add arg SIGNAL_P. 7 * xfaces.c (lookup_derived_face): Add arg SIGNAL_P.
@@ -17,7 +21,7 @@
172005-03-22 David Kastrup <dak@gnu.org> 212005-03-22 David Kastrup <dak@gnu.org>
18 22
19 * textprop.c (Fnext_char_property_change) 23 * textprop.c (Fnext_char_property_change)
20 (Fprevious_char_property_change): allow marker as limit. 24 (Fprevious_char_property_change): Allow marker as limit.
21 (Fnext_single_char_property_change) 25 (Fnext_single_char_property_change)
22 (Fprevious_single_char_property_change): Check that limit is a 26 (Fprevious_single_char_property_change): Check that limit is a
23 number in strings. 27 number in strings.
@@ -51,8 +55,7 @@
51 55
522005-03-17 Kenichi Handa <handa@m17n.org> 562005-03-17 Kenichi Handa <handa@m17n.org>
53 57
54 * coding.c (syms_of_coding): Docstring of coding-category-list 58 * coding.c (syms_of_coding): Docstring of coding-category-list fixed.
55 fixed.
56 59
572005-03-17 Stefan Monnier <monnier@iro.umontreal.ca> 602005-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
58 61
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)
5075 && it->len == 1) 5075 && it->len == 1)
5076 || !CHAR_PRINTABLE_P (it->c) 5076 || !CHAR_PRINTABLE_P (it->c)
5077 || (!NILP (Vshow_nonbreak_escape) 5077 || (!NILP (Vshow_nonbreak_escape)
5078 && (it->c == 0x8ad || it->c == 0x8a0))) 5078 && (it->c == 0x8ad || it->c == 0x8a0
5079 || it->c == 0xf2d || it->c == 0xf20)))
5079 : (it->c >= 127 5080 : (it->c >= 127
5080 && (!unibyte_display_via_language_environment 5081 && (!unibyte_display_via_language_environment
5081 || it->c == unibyte_char_to_multibyte (it->c))))) 5082 || it->c == unibyte_char_to_multibyte (it->c)))))