diff options
| author | Karl Heuer | 1997-06-14 04:53:00 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-06-14 04:53:00 +0000 |
| commit | f00ed1332d2d0d62c79b189bc33d2a355ca8ffe7 (patch) | |
| tree | c0f4e47fb210f2c3ace1d6b29945513a4dab2b8f /src/buffer.h | |
| parent | c71d37d59d101bd9d25fb8c8772cb2df8cd22820 (diff) | |
| download | emacs-f00ed1332d2d0d62c79b189bc33d2a355ca8ffe7.tar.gz emacs-f00ed1332d2d0d62c79b189bc33d2a355ca8ffe7.zip | |
(point): Obsolete macro deleted in favor of PT.
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 | ||