diff options
| author | Kenichi Handa | 2002-08-30 13:44:55 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-08-30 13:44:55 +0000 |
| commit | ba197fe66a610e786ef5748d3a917ee7cb4acdb5 (patch) | |
| tree | 2d09f7366d1896bf04db25399e32486162e1cfcd | |
| parent | 6b3acc48d7dc868d433934265466358e3919f04f (diff) | |
| download | emacs-ba197fe66a610e786ef5748d3a917ee7cb4acdb5.tar.gz emacs-ba197fe66a610e786ef5748d3a917ee7cb4acdb5.zip | |
(get_next_display_element): Fix previous change.
| -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 |