aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorStefan Monnier2007-06-29 03:37:33 +0000
committerStefan Monnier2007-06-29 03:37:33 +0000
commit8e50cc2df8df6f773422ab11805704eaa4bba016 (patch)
tree5041fa64f3f1bc6d4ffd1465a88a40055b7b39ab /src/buffer.h
parentdf2d551eba1af9966308bb70da6dd5f4e03b650e (diff)
downloademacs-8e50cc2df8df6f773422ab11805704eaa4bba016.tar.gz
emacs-8e50cc2df8df6f773422ab11805704eaa4bba016.zip
Replace uses of GC_* macros with the non-GC_ versions.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 06532ce2f5c..5db11854946 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -919,7 +919,7 @@ extern Lisp_Object Vtransient_mark_mode;
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/***********************************************************************