aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-08-20 11:13:34 +0000
committerKenichi Handa2002-08-20 11:13:34 +0000
commit790ac1c79d7e2652b17efdd0d22d0e25af02871d (patch)
tree28c3c0a3571734efaaa668320f8f59f295109b6f /src
parent67dde6602c951feee2e578014848607f9ea1944d (diff)
downloademacs-790ac1c79d7e2652b17efdd0d22d0e25af02871d.tar.gz
emacs-790ac1c79d7e2652b17efdd0d22d0e25af02871d.zip
(get_next_display_element): Don't display unibyte 8-bit
characters by octal form.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index c68cfe014dd..e5162702eb5 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -4232,9 +4232,9 @@ get_next_display_element (it)
4232 else if ((it->c < ' ' 4232 else if ((it->c < ' '
4233 && (it->area != TEXT_AREA 4233 && (it->area != TEXT_AREA
4234 || (it->c != '\n' && it->c != '\t'))) 4234 || (it->c != '\n' && it->c != '\t')))
4235 || (it->multibyte_p ? CHAR_BYTE8_P (it->c) : it->c >= 127)
4236 || (it->c != '\n' && it->c != '\t' 4235 || (it->c != '\n' && it->c != '\t'
4237 && !CHAR_PRINTABLE_P (it->c))) 4236 && (it->multibyte_p ? !CHAR_PRINTABLE_P (it->c)
4237 : it->c == 127)))
4238 { 4238 {
4239 /* IT->c is a control character which must be displayed 4239 /* IT->c is a control character which must be displayed
4240 either as '\003' or as `^C' where the '\\' and '^' 4240 either as '\003' or as `^C' where the '\\' and '^'