aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-03-22 21:23:10 +0000
committerKarl Heuer <[email protected]>1995-03-22 21:23:10 +0000
commitfc04fa47a486d7380b7fac90daa90b3cd091b011 (patch)
treeed230481a377c86a881c346ce2259a27b7bf64f1 /src
parent15874c5958f2480f3d77617b229734536830de42 (diff)
(overlay_touches_p): New function.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 71ab0daaee..96f2e56ec6 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1631,6 +1631,47 @@ overlays_at (pos, extend, vec_ptr, len_ptr, next_ptr, prev_ptr)
*prev_ptr = prev;
return idx;
}
+
+/* Fast function to just test if we're at an overlay boundary. */
+int
+overlay_touches_p (pos)
+ int pos;
+{
+ Lisp_Object tail, overlay;
+
+ for (tail = current_buffer->overlays_before; GC_CONSP (tail);
+ tail = XCONS (tail)->cdr)
+ {
+ int endpos;
+
+ overlay = XCONS (tail)->car;
+ if (!GC_OVERLAYP (overlay))
+ abort ();
+
+ endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
+ if (endpos < pos)
+ break;
+ if (endpos == pos || OVERLAY_POSITION (OVERLAY_START (overlay)) == pos)
+ return 1;
+ }
+
+ for (tail = current_buffer->overlays_after; GC_CONSP (tail);
+ tail = XCONS (tail)->cdr)
+ {
+ int startpos;
+
+ overlay = XCONS (tail)->car;
+ if (!GC_OVERLAYP (overlay))
+ abort ();
+
+ startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
+ if (pos < startpos)
+ break;
+ if (startpos == pos || OVERLAY_POSITION (OVERLAY_END (overlay)) == pos)
+ return 1;
+ }
+ return 0;
+}
struct sortvec
{