Function: overlay-properties

overlay-properties is a function defined in buffer.c.

Signature

(overlay-properties OVERLAY)

Documentation

Return a list of the properties on OVERLAY.

This is a copy of OVERLAY's plist; modifying its conses has no effect on OVERLAY.

Aliases

data-debug-overlay-properties (obsolete since 28.1) semantic-overlay-properties (obsolete since 27.1)

Source Code

// Defined in /usr/src/emacs/src/buffer.c
{
  CHECK_OVERLAY (overlay);

  return Fcopy_sequence (XOVERLAY (overlay)->plist);
}