diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/buffer.h b/src/buffer.h index 3352b235b30..4f96dd08834 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -491,10 +491,6 @@ extern struct buffer buffer_local_symbols; | |||
| 491 | always be safely stored in any slot. */ | 491 | always be safely stored in any slot. */ |
| 492 | extern struct buffer buffer_local_types; | 492 | extern struct buffer buffer_local_types; |
| 493 | 493 | ||
| 494 | /* Point in the current buffer. This is an obsolete alias | ||
| 495 | and should be eliminated. */ | ||
| 496 | #define point (current_buffer->pt + 0) | ||
| 497 | |||
| 498 | /* Return the address of position N. No range checking. */ | 494 | /* Return the address of position N. No range checking. */ |
| 499 | #define POS_ADDR(n) (((n)>= GPT ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1) | 495 | #define POS_ADDR(n) (((n)>= GPT ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1) |
| 500 | 496 | ||