From: Chong Yidong Date: Fri, 25 Jun 2010 00:30:55 +0000 (-0400) Subject: Fix after-string and image interaction bug (Bug#1336). X-Git-Tag: emacs-pretest-23.2.90~139^2~86 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c7dd9743077f99ceb91be4c21900d4dfbd5161d4;p=emacs.git 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). --- 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; }