diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-11-11 11:45:06 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-11-11 11:45:06 +0000 |
commit | 339ee9797d7d80d6b934e6a335c57d39303bbdcc (patch) | |
tree | 4ff4b35d61aa3f78d65f7de698c2a54a4cdb4508 /src/buffer.h | |
parent | 35a5514b96c8ae655e2a6995c2f0ff2a07de65ab (diff) | |
download | emacs-339ee9797d7d80d6b934e6a335c57d39303bbdcc.tar.gz |
Remove USE_TEXT_PROPERTIES.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/buffer.h b/src/buffer.h index 617a2fe1445..a3e87c8f205 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -199,7 +199,6 @@ Boston, MA 02111-1307, USA. */ /* Macros to set PT in the current buffer, or another buffer.. */ -#ifdef USE_TEXT_PROPERTIES #define SET_PT(position) (set_point (current_buffer, (position))) #define TEMP_SET_PT(position) (temp_set_point (current_buffer, (position))) @@ -218,22 +217,6 @@ extern INLINE void temp_set_point P_ ((struct buffer *, int)); extern void set_point_both P_ ((struct buffer *, int, int)); extern INLINE void temp_set_point_both P_ ((struct buffer *, int, int)); -#else /* don't support text properties */ - -#define SET_PT(position) (current_buffer->pt = (position)) -#define TEMP_SET_PT(position) (current_buffer->pt = (position)) - -#define SET_PT_BOTH(position, byte) \ - (current_buffer->pt = (position), \ - current_buffer->pt_byte = (byte)) - -#define TEMP_SET_PT_BOTH(position, byte) \ - (current_buffer->pt = (position), \ - current_buffer->pt_byte = (byte)) - -#define BUF_SET_PT(buffer, position) (buffer->pt = (position)) -#define BUF_TEMP_SET_PT(buffer, position) (buffer->pt = (position)) -#endif /* don't support text properties */ /* Macros for setting the BEGV, ZV or PT of a given buffer. |