mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-20 04:50:55 -07:00
(get_next_display_element): Fix previous change.
This commit is contained in:
parent
6b3acc48d7
commit
ba197fe66a
1 changed files with 2 additions and 2 deletions
|
|
@ -4281,14 +4281,14 @@ get_next_display_element (it)
|
|||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue