]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/buffer.c (set_overlay_region): remove unused function.
authorMatt Armstrong <matt@rfc20.org>
Sun, 16 Oct 2022 03:04:12 +0000 (20:04 -0700)
committerMatt Armstrong <matt@rfc20.org>
Wed, 19 Oct 2022 22:09:42 +0000 (15:09 -0700)
src/buffer.c

index e1303f2a880bda022e5e1bf61d41dd5b8f73a202..74c6705cbd317911cd0a316533ceaa62c75c7bfa 100644 (file)
@@ -3535,15 +3535,6 @@ modify_overlay (struct buffer *buf, ptrdiff_t start, ptrdiff_t end)
   modiff_incr (&BUF_OVERLAY_MODIFF (buf), 1);
 }
 
-INLINE void
-set_overlay_region (struct Lisp_Overlay *ov, ptrdiff_t begin, ptrdiff_t end)
-{
-  eassert (ov->buffer);
-  begin = clip_to_bounds (BEG, begin, ov->buffer->text->z);
-  end = clip_to_bounds (begin, end, ov->buffer->text->z);
-  interval_node_set_region (ov->buffer->overlays, ov->interval, begin, end);
-}
-
 DEFUN ("move-overlay", Fmove_overlay, Smove_overlay, 3, 4, 0,
        doc: /* Set the endpoints of OVERLAY to BEG and END in BUFFER.
 If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.