From: Richard M. Stallman Date: Sun, 3 Apr 1994 19:37:32 +0000 (+0000) Subject: (OVERLAY_POSITION): Use XGCTYPE. X-Git-Tag: emacs-19.34~9198 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=29ff037d327e47927b4d2951e3f81db81bb90e3c;p=emacs.git (OVERLAY_POSITION): Use XGCTYPE. --- 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. */