]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix after-string and image interaction bug (Bug#1336).
authorChong Yidong <cyd@stupidchicken.com>
Fri, 25 Jun 2010 00:30:55 +0000 (20:30 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 25 Jun 2010 00:30:55 +0000 (20:30 -0400)
* xdisp.c (next_element_from_image): Ensure that after-strings are
read the next time we hit handle_stop (Bug#1336).

src/ChangeLog
src/xdisp.c

index 14c1482a04928c28607909aeadaf044a9c6cfc47..4d80761d7d677f681a3df7244ec6ed364bb60608 100644 (file)
@@ -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.
index 7dcdf19431a62ec7a3f42c9a7bc92c6fb55d1d55..73ed675c4d23cc0842f9646b7fdb61d7e2a6e2cb 100644 (file)
@@ -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;
 }