aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-09-22 19:20:52 +0000
committerKarl Heuer1994-09-22 19:20:52 +0000
commit889bf3298713438c0bdd76554ccc68d17608ff68 (patch)
tree9d5db0c3d1a743246592d21e0639648604272d87 /src
parent4351ed673251b40385e58b806dff288710f6976b (diff)
downloademacs-889bf3298713438c0bdd76554ccc68d17608ff68.tar.gz
emacs-889bf3298713438c0bdd76554ccc68d17608ff68.zip
(evaporate_overlays): Overlay is in car, not cdr.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 0ddd5198a68..4e00e983634 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2388,7 +2388,7 @@ evaporate_overlays (pos)
2388 tail = XCONS (tail)->cdr) 2388 tail = XCONS (tail)->cdr)
2389 { 2389 {
2390 int startpos; 2390 int startpos;
2391 overlay = XCONS (tail)->cdr; 2391 overlay = XCONS (tail)->car;
2392 startpos = OVERLAY_POSITION (OVERLAY_START (overlay)); 2392 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2393 if (startpos > pos) 2393 if (startpos > pos)
2394 break; 2394 break;