aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2004-11-15 13:34:40 +0000
committerRichard M. Stallman <[email protected]>2004-11-15 13:34:40 +0000
commit27418463ce52820673b52782a860ccf368cb5550 (patch)
treeb276e3aac8ec57374a6cf475ef77816233d0c729
parent10980463d7c391cc890d5b918937eb82f9bcd8c8 (diff)
(get_next_display_element): Fix previous change.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xdisp.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 956ad26e4a..a21effceed 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-15 Richard M. Stallman <[email protected]>
+
+ * xdisp.c (get_next_display_element): Fix previous change.
+
2004-11-14 Jan Dj,Ad(Brv <[email protected]>
* window.c (shrink_windows): Handle special case of one window left
diff --git a/src/xdisp.c b/src/xdisp.c
index 14a64187f1..9c86e579c0 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -4898,7 +4898,7 @@ get_next_display_element (it)
else if ((it->c < ' '
&& (it->area != TEXT_AREA
/* In mode line, treat \n like other crl chars. */
- || (it->c == '\n'
+ || (it->c != '\n'
&& it->glyph_row && it->glyph_row->mode_line_p)
|| (it->c != '\n' && it->c != '\t')))
|| (it->multibyte_p