From 29ff037d327e47927b4d2951e3f81db81bb90e3c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 3 Apr 1994 19:37:32 +0000 Subject: [PATCH] (OVERLAY_POSITION): Use XGCTYPE. --- src/buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer.h b/src/buffer.h index e5638bbe083..de20ae7ae4f 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -386,7 +386,7 @@ extern Lisp_Object Vtransient_mark_mode; We assume you know which buffer it's pointing into. */ #define OVERLAY_POSITION(P) \ - (MARKERP ((P)) ? marker_position ((P)) : (abort (), 0)) + (XGCTYPE ((P)) == Lisp_Marker ? marker_position ((P)) : (abort (), 0)) /* Allocation of buffer text. */ -- 2.39.5