From c7dd9743077f99ceb91be4c21900d4dfbd5161d4 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Thu, 24 Jun 2010 20:30:55 -0400 Subject: [PATCH] Fix after-string and image interaction bug (Bug#1336). * xdisp.c (next_element_from_image): Ensure that after-strings are read the next time we hit handle_stop (Bug#1336). --- src/ChangeLog | 5 +++++ src/xdisp.c | 1 + 2 files changed, 6 insertions(+) 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 + + * 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 * 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; } -- 2.39.2