From: Karl Heuer Date: Sat, 14 Jun 1997 04:53:00 +0000 (+0000) Subject: (point): Obsolete macro deleted in favor of PT. X-Git-Tag: emacs-20.1~1705 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f00ed1332d2d0d62c79b189bc33d2a355ca8ffe7;p=emacs.git (point): Obsolete macro deleted in favor of PT. --- 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; always be safely stored in any slot. */ extern struct buffer buffer_local_types; -/* Point in the current buffer. This is an obsolete alias - and should be eliminated. */ -#define point (current_buffer->pt + 0) - /* Return the address of position N. No range checking. */ #define POS_ADDR(n) (((n)>= GPT ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1)