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
viper-overlay-end (obsolete since 27.1)
semantic-overlay-end (obsolete since 27.1)
Source Code
// Defined in /usr/src/emacs/src/buffer.c
{
CHECK_OVERLAY (overlay);
return (Fmarker_position (OVERLAY_END (overlay)));
}