1
Fork 0
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:
Karl Heuer 1994-09-22 19:20:52 +00:00
parent 4351ed6732
commit 889bf32987

View file

@ -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;