aboutsummaryrefslogtreecommitdiffstats
path: root/src/intervals.c
diff options
context:
space:
mode:
authorJoseph Arceneaux <[email protected]>1992-10-02 20:02:51 +0000
committerJoseph Arceneaux <[email protected]>1992-10-02 20:02:51 +0000
commitd2f7a8023e2ad9e6bd6075626e8e870bf7507754 (patch)
tree7bb90634798ba7c9fb57cc14bf08b2efea9bd40c /src/intervals.c
parentd5e35230b582132c7246f117c118151500cfa595 (diff)
* intervals.c: Conditionalize all functions on
"USE_TEXT_PROPERTIES".
Diffstat (limited to 'src/intervals.c')
-rw-r--r--src/intervals.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/intervals.c b/src/intervals.c
index 4a0dde1288..8fe1d7eb51 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -44,6 +44,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "buffer.h"
#include "screen.h"
+/* The rest of the file is within this conditional. */
+#ifdef USE_TEXT_PROPERTIES
+
/* Factor for weight-balancing interval trees. */
Lisp_Object interval_balance_threshold;
@@ -1561,3 +1564,5 @@ copy_intervals_to_string (string, buffer, position, length)
interval_copy->parent = (INTERVAL) string;
XSTRING (string)->intervals = interval_copy;
}
+
+#endif /* USE_TEXT_PROPERTIES */