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 c68cfe014dd..e5162702eb5 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -4232,9 +4232,9 @@ get_next_display_element (it) | |||
| 4232 | else if ((it->c < ' ' | 4232 | else if ((it->c < ' ' |
| 4233 | && (it->area != TEXT_AREA | 4233 | && (it->area != TEXT_AREA |
| 4234 | || (it->c != '\n' && it->c != '\t'))) | 4234 | || (it->c != '\n' && it->c != '\t'))) |
| 4235 | || (it->multibyte_p ? CHAR_BYTE8_P (it->c) : it->c >= 127) | ||
| 4236 | || (it->c != '\n' && it->c != '\t' | 4235 | || (it->c != '\n' && it->c != '\t' |
| 4237 | && !CHAR_PRINTABLE_P (it->c))) | 4236 | && (it->multibyte_p ? !CHAR_PRINTABLE_P (it->c) |
| 4237 | : it->c == 127))) | ||
| 4238 | { | 4238 | { |
| 4239 | /* IT->c is a control character which must be displayed | 4239 | /* IT->c is a control character which must be displayed |
| 4240 | either as '\003' or as `^C' where the '\\' and '^' | 4240 | either as '\003' or as `^C' where the '\\' and '^' |