diff options
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/xdisp.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 14c1482a049..4d80761d7d6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2010-06-25 Chong Yidong <cyd@stupidchicken.com> + + * xdisp.c (next_element_from_image): Ensure that after-strings are + read the next time we hit handle_stop (Bug#1336). + 2010-06-23 Andreas Schwab <schwab@linux-m68k.org> * lread.c (read1): Signal error if #s is not followed by paren. diff --git a/src/xdisp.c b/src/xdisp.c index 7dcdf19431a..73ed675c4d2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -6429,6 +6429,7 @@ next_element_from_image (it) struct it *it; { it->what = IT_IMAGE; + it->ignore_overlay_strings_at_pos_p = 0; return 1; } |