1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-15 09:47:20 +00:00

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).
This commit is contained in:
Chong Yidong 2010-06-24 20:30:55 -04:00
parent 51422d6dde
commit c7dd974307
2 changed files with 6 additions and 0 deletions

View 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.

View 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;
}