diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2012-08-10 13:04:19 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2012-08-10 13:04:19 +0400 |
commit | 65e8ee52931d3885fd75491a8f5b22ddc80c7208 (patch) | |
tree | d7d174c76c216788d8c3e40000a9dc6c1e3c3a03 /src/intervals.h | |
parent | 9b855fd632dcbb86576a4a97f5f4196f0c75c102 (diff) | |
download | emacs-65e8ee52931d3885fd75491a8f5b22ddc80c7208.tar.gz emacs-65e8ee52931d3885fd75491a8f5b22ddc80c7208.tar.bz2 emacs-65e8ee52931d3885fd75491a8f5b22ddc80c7208.zip |
Remove unused macros from intervals.h.
* intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
* intervals.c: Adjust comment.
Diffstat (limited to 'src/intervals.h')
-rw-r--r-- | src/intervals.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/intervals.h b/src/intervals.h index b50016eeb59..754b33f2ab9 100644 --- a/src/intervals.h +++ b/src/intervals.h @@ -213,15 +213,6 @@ interval_copy_parent (INTERVAL d, INTERVAL s) if ((from)->rear_sticky) (to)->rear_sticky = 1; \ } -/* Macro determining whether the properties of an interval being - inserted should be merged with the properties of the text where - they are being inserted. */ -#define MERGE_INSERTIONS(i) 1 - -/* Macro determining if an invisible interval should be displayed - as a special glyph, or not at all. */ -#define DISPLAY_INVISIBLE_GLYPH(i) 0 - /* Is this interval visible? Replace later with cache access. */ #define INTERVAL_VISIBLE_P(i) \ (i && NILP (textget ((i)->plist, Qinvisible))) |