diff options
| author | Chong Yidong | 2010-06-24 20:30:55 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-06-24 20:30:55 -0400 |
| commit | c7dd9743077f99ceb91be4c21900d4dfbd5161d4 (patch) | |
| tree | a9ed2b7602cf289b22c3e38837e160b802b8196a /src | |
| parent | 51422d6dde17e1a655ec0161b537655b09cd630c (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xdisp.c | 1 |
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 @@ | |||
| 1 | 2010-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 | |||
| 1 | 2010-06-23 Andreas Schwab <schwab@linux-m68k.org> | 6 | 2010-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 | ||