aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-03 23:22:06 +0000
committerRichard M. Stallman1994-04-03 23:22:06 +0000
commit3ccf510abd96e9001133f35c142a9329a1d0c731 (patch)
tree7b7e263cf0e86b67bf45bc84d2475fd4ee2a3a26 /src/buffer.c
parent0b20d25717a1ecae07fa4a841732dc3c4a9b76d4 (diff)
downloademacs-3ccf510abd96e9001133f35c142a9329a1d0c731.tar.gz
emacs-3ccf510abd96e9001133f35c142a9329a1d0c731.zip
(overlays_at): Fix previous change.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index a5a4346e47b..8cb523596a2 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1310,7 +1310,7 @@ overlays_at (pos, extend, vec_ptr, len_ptr, next_ptr)
1310 int startpos; 1310 int startpos;
1311 1311
1312 overlay = XCONS (tail)->car; 1312 overlay = XCONS (tail)->car;
1313 if (XGCTYPE (overlay) == Lisp_Overlay) 1313 if (XGCTYPE (overlay) != Lisp_Overlay)
1314 abort (); 1314 abort ();
1315 1315
1316 start = OVERLAY_START (overlay); 1316 start = OVERLAY_START (overlay);
@@ -1350,7 +1350,7 @@ overlays_at (pos, extend, vec_ptr, len_ptr, next_ptr)
1350 int startpos; 1350 int startpos;
1351 1351
1352 overlay = XCONS (tail)->car; 1352 overlay = XCONS (tail)->car;
1353 if (XGCTYPE (overlay) == Lisp_Overlay) 1353 if (XGCTYPE (overlay) != Lisp_Overlay)
1354 abort (); 1354 abort ();
1355 1355
1356 start = OVERLAY_START (overlay); 1356 start = OVERLAY_START (overlay);