diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index e7656d43077..0fa379dc5d7 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -4281,14 +4281,14 @@ get_next_display_element (it) | |||
| 4281 | If it->multibyte_p is zero, eight-bit characters that | 4281 | If it->multibyte_p is zero, eight-bit characters that |
| 4282 | don't have corresponding multibyte char code are also | 4282 | don't have corresponding multibyte char code are also |
| 4283 | translated to octal form. */ | 4283 | translated to octal form. */ |
| 4284 | else if (((it->c < ' ' || it->c == 127) | 4284 | else if ((it->c < ' ' |
| 4285 | && (it->area != TEXT_AREA | 4285 | && (it->area != TEXT_AREA |
| 4286 | || (it->c != '\n' && it->c != '\t'))) | 4286 | || (it->c != '\n' && it->c != '\t'))) |
| 4287 | || (it->multibyte_p | 4287 | || (it->multibyte_p |
| 4288 | ? ((it->c >= 127 | 4288 | ? ((it->c >= 127 |
| 4289 | && it->len == 1) | 4289 | && it->len == 1) |
| 4290 | || !CHAR_PRINTABLE_P (it->c)) | 4290 | || !CHAR_PRINTABLE_P (it->c)) |
| 4291 | : (it->c >= 128 | 4291 | : (it->c >= 127 |
| 4292 | && it->c == unibyte_char_to_multibyte (it->c)))) | 4292 | && it->c == unibyte_char_to_multibyte (it->c)))) |
| 4293 | { | 4293 | { |
| 4294 | /* IT->c is a control character which must be displayed | 4294 | /* IT->c is a control character which must be displayed |