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 | 9ba4c43ccf70c33e89a2c9bfd0782d2baeaa98f3 (patch) | |
tree | cc7e9b9ce5f94227dcd057dd9ba58ba81cc22653 /src/buffer.h | |
parent | 4438c071786606e735242cac1411e1e2edd4ca6a (diff) | |
download | emacs-9ba4c43ccf70c33e89a2c9bfd0782d2baeaa98f3.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. |