mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-28 10:51:29 -08:00
(next_overlay_string): Don't set overlay_strings_at_end_processed_p if
we're currently reading from a display string.
This commit is contained in:
parent
66cfe827e1
commit
3977f0437f
1 changed files with 1 additions and 1 deletions
|
|
@ -4674,7 +4674,7 @@ next_overlay_string (it)
|
|||
/* If we're at the end of the buffer, record that we have
|
||||
processed the overlay strings there already, so that
|
||||
next_element_from_buffer doesn't try it again. */
|
||||
if (IT_CHARPOS (*it) >= it->end_charpos)
|
||||
if (NILP (it->string) && IT_CHARPOS (*it) >= it->end_charpos)
|
||||
it->overlay_strings_at_end_processed_p = 1;
|
||||
|
||||
/* If we have to display `...' for invisible text, set
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue