diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h index 34d92fd61c7..3ab666c07bf 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -370,7 +370,7 @@ extern Lisp_Object Vtransient_mark_mode; | |||
| 370 | Therefore, we cannot assume that they remain valid--we must check. */ | 370 | Therefore, we cannot assume that they remain valid--we must check. */ |
| 371 | 371 | ||
| 372 | /* 1 if the OV is a cons cell whose car is a cons cell. */ | 372 | /* 1 if the OV is a cons cell whose car is a cons cell. */ |
| 373 | #define OVERLAY_VALID(OV) (CONSP ((OV)) && CONSP (XCONS ((OV))->car)) | 373 | #define OVERLAY_VALID(OV) (OVERLAYP (OV)) |
| 374 | 374 | ||
| 375 | /* Return the marker that stands for where OV starts in the buffer. */ | 375 | /* Return the marker that stands for where OV starts in the buffer. */ |
| 376 | #define OVERLAY_START(OV) (XCONS (XCONS ((OV))->car)->car) | 376 | #define OVERLAY_START(OV) (XCONS (XCONS ((OV))->car)->car) |
| @@ -386,7 +386,6 @@ extern Lisp_Object Vtransient_mark_mode; | |||
| 386 | ((MARKERP ((P)) && XMARKER ((P))->buffer == current_buffer) \ | 386 | ((MARKERP ((P)) && XMARKER ((P))->buffer == current_buffer) \ |
| 387 | ? marker_position ((P)) : 0) | 387 | ? marker_position ((P)) : 0) |
| 388 | 388 | ||
| 389 | |||
| 390 | /* Allocation of buffer text. */ | 389 | /* Allocation of buffer text. */ |
| 391 | 390 | ||
| 392 | #ifdef REL_ALLOC | 391 | #ifdef REL_ALLOC |