diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 209511a08b4..b93c151ed2b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -4834,7 +4834,7 @@ next_overlay_string (it) | |||
| 4834 | /* If we're at the end of the buffer, record that we have | 4834 | /* If we're at the end of the buffer, record that we have |
| 4835 | processed the overlay strings there already, so that | 4835 | processed the overlay strings there already, so that |
| 4836 | next_element_from_buffer doesn't try it again. */ | 4836 | next_element_from_buffer doesn't try it again. */ |
| 4837 | if (IT_CHARPOS (*it) >= it->end_charpos) | 4837 | if (NILP (it->string) && IT_CHARPOS (*it) >= it->end_charpos) |
| 4838 | it->overlay_strings_at_end_processed_p = 1; | 4838 | it->overlay_strings_at_end_processed_p = 1; |
| 4839 | 4839 | ||
| 4840 | /* If we have to display `...' for invisible text, set | 4840 | /* If we have to display `...' for invisible text, set |