changeset 6659:830263c59354

(overlays_at): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Sun, 03 Apr 1994 23:22:06 +0000
parents bf03765f6989
children cb14d76e993c
files src/buffer.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/buffer.c	Sun Apr 03 21:32:18 1994 +0000
+++ b/src/buffer.c	Sun Apr 03 23:22:06 1994 +0000
@@ -1310,7 +1310,7 @@
       int startpos;
 
       overlay = XCONS (tail)->car;
-      if (XGCTYPE (overlay) == Lisp_Overlay)
+      if (XGCTYPE (overlay) != Lisp_Overlay)
 	abort ();
 
       start = OVERLAY_START (overlay);
@@ -1350,7 +1350,7 @@
       int startpos;
 
       overlay = XCONS (tail)->car;
-      if (XGCTYPE (overlay) == Lisp_Overlay)
+      if (XGCTYPE (overlay) != Lisp_Overlay)
 	abort ();
 
       start = OVERLAY_START (overlay);