Function: overlay-end
overlay-end is a function defined in buffer.c.
Signature
(overlay-end OVERLAY)
Documentation
Return the position at which OVERLAY ends.
Other relevant functions are documented in the overlay group.
Shortdoc
;; overlay
(overlay-end foo)
e.g. => 10
Aliases
semantic-overlay-end (obsolete since 27.1)
viper-overlay-end (obsolete since 27.1)
Source Code
// Defined in /usr/src/emacs/src/buffer.c
{
CHECK_OVERLAY (overlay);
if (! OVERLAY_BUFFER (overlay))
return Qnil;
return make_fixnum (OVERLAY_END (overlay));
}