mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-28 08:11:05 -08:00
(evaporate_overlays): Overlay is in car, not cdr.
This commit is contained in:
parent
4351ed6732
commit
889bf32987
1 changed files with 1 additions and 1 deletions
|
|
@ -2388,7 +2388,7 @@ evaporate_overlays (pos)
|
|||
tail = XCONS (tail)->cdr)
|
||||
{
|
||||
int startpos;
|
||||
overlay = XCONS (tail)->cdr;
|
||||
overlay = XCONS (tail)->car;
|
||||
startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
|
||||
if (startpos > pos)
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue