aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChong Yidong2010-06-24 20:30:55 -0400
committerChong Yidong2010-06-24 20:30:55 -0400
commitc7dd9743077f99ceb91be4c21900d4dfbd5161d4 (patch)
treea9ed2b7602cf289b22c3e38837e160b802b8196a /src
parent51422d6dde17e1a655ec0161b537655b09cd630c (diff)
downloademacs-c7dd9743077f99ceb91be4c21900d4dfbd5161d4.tar.gz
emacs-c7dd9743077f99ceb91be4c21900d4dfbd5161d4.zip
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).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xdisp.c1
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 @@
12010-06-25 Chong Yidong <cyd@stupidchicken.com>
2
3 * xdisp.c (next_element_from_image): Ensure that after-strings are
4 read the next time we hit handle_stop (Bug#1336).
5
12010-06-23 Andreas Schwab <schwab@linux-m68k.org> 62010-06-23 Andreas Schwab <schwab@linux-m68k.org>
2 7
3 * lread.c (read1): Signal error if #s is not followed by paren. 8 * 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)
6429 struct it *it; 6429 struct it *it;
6430{ 6430{
6431 it->what = IT_IMAGE; 6431 it->what = IT_IMAGE;
6432 it->ignore_overlay_strings_at_pos_p = 0;
6432 return 1; 6433 return 1;
6433} 6434}
6434 6435