# HG changeset patch # User Kenichi Handa # Date 1029842014 0 # Node ID 28c841bc770651f36c69e7679cf4c4abb1eedcd2 # Parent ad8f56efa7c6b4dfb653bf87e12dbb616610b1e8 (get_next_display_element): Don't display unibyte 8-bit characters by octal form. diff -r ad8f56efa7c6 -r 28c841bc7706 src/xdisp.c --- a/src/xdisp.c Tue Aug 20 11:11:19 2002 +0000 +++ b/src/xdisp.c Tue Aug 20 11:13:34 2002 +0000 @@ -4232,9 +4232,9 @@ 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 '^'