comparison src/buffer.h @ 90970:3371fc48749b

Replace uses of GC_* macros with the non-GC_ versions.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 29 Jun 2007 03:37:33 +0000
parents 19c4543f1154
children f55f9811f5d7
comparison
equal deleted inserted replaced
90969:0848217e8e8a 90970:3371fc48749b
917 917
918 /* Return the actual buffer position for the marker P. 918 /* Return the actual buffer position for the marker P.
919 We assume you know which buffer it's pointing into. */ 919 We assume you know which buffer it's pointing into. */
920 920
921 #define OVERLAY_POSITION(P) \ 921 #define OVERLAY_POSITION(P) \
922 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0)) 922 (MARKERP (P) ? marker_position (P) : (abort (), 0))
923 923
924 924
925 /*********************************************************************** 925 /***********************************************************************
926 Buffer-local Variables 926 Buffer-local Variables
927 ***********************************************************************/ 927 ***********************************************************************/