diff options
| author | Richard M. Stallman | 2004-10-27 14:46:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-10-27 14:46:25 +0000 |
| commit | ec9f1dd3ece76f5967b6ae3904b32ad2aced2125 (patch) | |
| tree | 611dc62096500d2469b09265f5cb686c078386b1 /src | |
| parent | 3ccf95cb1a0138e00140490b72678c0d69c00ab4 (diff) | |
| download | emacs-ec9f1dd3ece76f5967b6ae3904b32ad2aced2125.tar.gz emacs-ec9f1dd3ece76f5967b6ae3904b32ad2aced2125.zip | |
(get_next_display_element): In mode lines,
treat newline and tab like other control characters.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index afae7fd22af..df68ab80eff 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -4891,6 +4891,8 @@ get_next_display_element (it) | |||
| 4891 | translated to octal form. */ | 4891 | translated to octal form. */ |
| 4892 | else if ((it->c < ' ' | 4892 | else if ((it->c < ' ' |
| 4893 | && (it->area != TEXT_AREA | 4893 | && (it->area != TEXT_AREA |
| 4894 | /* In mode line, treat \n, \t like other crl chars. */ | ||
| 4895 | || (it->glyph_row && it->glyph_row->mode_line_p) | ||
| 4894 | || (it->c != '\n' && it->c != '\t'))) | 4896 | || (it->c != '\n' && it->c != '\t'))) |
| 4895 | || (it->multibyte_p | 4897 | || (it->multibyte_p |
| 4896 | ? ((it->c >= 127 | 4898 | ? ((it->c >= 127 |