From: Kenichi Handa Date: Tue, 20 Aug 2002 11:13:34 +0000 (+0000) Subject: (get_next_display_element): Don't display unibyte 8-bit X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~409 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=790ac1c79d7e2652b17efdd0d22d0e25af02871d;p=emacs.git (get_next_display_element): Don't display unibyte 8-bit characters by octal form. --- 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) else if ((it->c < ' ' && (it->area != TEXT_AREA || (it->c != '\n' && it->c != '\t'))) - || (it->multibyte_p ? CHAR_BYTE8_P (it->c) : it->c >= 127) || (it->c != '\n' && it->c != '\t' - && !CHAR_PRINTABLE_P (it->c))) + && (it->multibyte_p ? !CHAR_PRINTABLE_P (it->c) + : it->c == 127))) { /* IT->c is a control character which must be displayed either as '\003' or as `^C' where the '\\' and '^'