(evaporate_overlays): Overlay is in car, not cdr.
authorKarl Heuer <kwzh@gnu.org>
Thu, 22 Sep 1994 19:20:52 +0000 (19:20 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 22 Sep 1994 19:20:52 +0000 (19:20 +0000)
src/buffer.c

index 0ddd519..4e00e98 100644 (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;