aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorKarl Heuer1994-11-15 02:04:23 +0000
committerKarl Heuer1994-11-15 02:04:23 +0000
commit21f7c864004da8750440588298e1975f457d50e7 (patch)
treef4845e4cfe9a87510e240ba314ed6f9110c53990 /src/buffer.h
parentce7d8eec6c2b7e93eb083d0d8d5ce015f86b872d (diff)
downloademacs-21f7c864004da8750440588298e1975f457d50e7.tar.gz
emacs-21f7c864004da8750440588298e1975f457d50e7.zip
(OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 2889d263820..2adcd95b0cc 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -418,10 +418,10 @@ extern Lisp_Object Vtransient_mark_mode;
418#define OVERLAY_VALID(OV) (OVERLAYP (OV)) 418#define OVERLAY_VALID(OV) (OVERLAYP (OV))
419 419
420/* Return the marker that stands for where OV starts in the buffer. */ 420/* Return the marker that stands for where OV starts in the buffer. */
421#define OVERLAY_START(OV) (XCONS (XCONS ((OV))->car)->car) 421#define OVERLAY_START(OV) (XOVERLAY (OV)->start)
422 422
423/* Return the marker that stands for where OV ends in the buffer. */ 423/* Return the marker that stands for where OV ends in the buffer. */
424#define OVERLAY_END(OV) (XCONS (XCONS ((OV))->car)->cdr) 424#define OVERLAY_END(OV) (XOVERLAY (OV)->end)
425 425
426/* Return the actual buffer position for the marker P. 426/* Return the actual buffer position for the marker P.
427 We assume you know which buffer it's pointing into. */ 427 We assume you know which buffer it's pointing into. */