# HG changeset patch # User Kenichi Handa # Date 1030715095 0 # Node ID eab3292ff2df543b0a8270e589a9f1f2ebc00cfb # Parent ba45fd15532bfdc2696f6d89d0d7f1012f551518 (get_next_display_element): Fix previous change. diff -r ba45fd15532b -r eab3292ff2df src/xdisp.c --- a/src/xdisp.c Fri Aug 30 13:22:12 2002 +0000 +++ b/src/xdisp.c Fri Aug 30 13:44:55 2002 +0000 @@ -4281,14 +4281,14 @@ If it->multibyte_p is zero, eight-bit characters that don't have corresponding multibyte char code are also translated to octal form. */ - else if (((it->c < ' ' || it->c == 127) + else if ((it->c < ' ' && (it->area != TEXT_AREA || (it->c != '\n' && it->c != '\t'))) || (it->multibyte_p ? ((it->c >= 127 && it->len == 1) || !CHAR_PRINTABLE_P (it->c)) - : (it->c >= 128 + : (it->c >= 127 && it->c == unibyte_char_to_multibyte (it->c)))) { /* IT->c is a control character which must be displayed