]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 0ddd5198a68fee25627119ab3c2ff1d3c1258f32..4e00e98363458a9635f74789245bc1b779a7aa2f 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;