diff src/intervals.c @ 1301:5a27062b8b7f

* intervals.c: Conditionalize all functions on "USE_TEXT_PROPERTIES".
author Joseph Arceneaux <jla@gnu.org>
date Fri, 02 Oct 1992 20:02:51 +0000
parents b05982e82d93
children 0a488d74fd6c
line wrap: on
line diff
--- a/src/intervals.c	Fri Oct 02 19:59:42 1992 +0000
+++ b/src/intervals.c	Fri Oct 02 20:02:51 1992 +0000
@@ -44,6 +44,9 @@
 #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 @@
   interval_copy->parent = (INTERVAL) string;
   XSTRING (string)->intervals = interval_copy;
 }
+
+#endif /* USE_TEXT_PROPERTIES */