diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 2 |
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 | /*********************************************************************** |