# HG changeset patch # User Karl Heuer # Date 784865063 0 # Node ID b039e4156d7430541c0f9d3f71423fc155a2a815 # Parent 594e838f4567a07285646806dbed8100c70a1006 (OVERLAY_START, OVERLAY_END): Use new overlay substructure. diff -r 594e838f4567 -r b039e4156d74 src/buffer.h --- a/src/buffer.h Tue Nov 15 02:04:03 1994 +0000 +++ b/src/buffer.h Tue Nov 15 02:04:23 1994 +0000 @@ -418,10 +418,10 @@ #define OVERLAY_VALID(OV) (OVERLAYP (OV)) /* Return the marker that stands for where OV starts in the buffer. */ -#define OVERLAY_START(OV) (XCONS (XCONS ((OV))->car)->car) +#define OVERLAY_START(OV) (XOVERLAY (OV)->start) /* Return the marker that stands for where OV ends in the buffer. */ -#define OVERLAY_END(OV) (XCONS (XCONS ((OV))->car)->cdr) +#define OVERLAY_END(OV) (XOVERLAY (OV)->end) /* Return the actual buffer position for the marker P. We assume you know which buffer it's pointing into. */