changeset 6654:b188651d24d6

(OVERLAY_POSITION): Use XGCTYPE.
author Richard M. Stallman <rms@gnu.org>
date Sun, 03 Apr 1994 19:37:32 +0000
parents 14a0a3fe93fd
children 41be2ee67089
files src/buffer.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/buffer.h	Sun Apr 03 19:03:23 1994 +0000
+++ b/src/buffer.h	Sun Apr 03 19:37:32 1994 +0000
@@ -386,7 +386,7 @@
    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.  */