aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoseph Arceneaux1992-10-02 20:02:51 +0000
committerJoseph Arceneaux1992-10-02 20:02:51 +0000
commitd2f7a8023e2ad9e6bd6075626e8e870bf7507754 (patch)
tree7bb90634798ba7c9fb57cc14bf08b2efea9bd40c /src
parentd5e35230b582132c7246f117c118151500cfa595 (diff)
downloademacs-d2f7a8023e2ad9e6bd6075626e8e870bf7507754.tar.gz
emacs-d2f7a8023e2ad9e6bd6075626e8e870bf7507754.zip
* intervals.c: Conditionalize all functions on
"USE_TEXT_PROPERTIES".
Diffstat (limited to 'src')
-rw-r--r--src/intervals.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/intervals.c b/src/intervals.c
index 4a0dde12887..8fe1d7eb513 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -44,6 +44,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
44#include "buffer.h" 44#include "buffer.h"
45#include "screen.h" 45#include "screen.h"
46 46
47/* The rest of the file is within this conditional. */
48#ifdef USE_TEXT_PROPERTIES
49
47/* Factor for weight-balancing interval trees. */ 50/* Factor for weight-balancing interval trees. */
48Lisp_Object interval_balance_threshold; 51Lisp_Object interval_balance_threshold;
49 52
@@ -1561,3 +1564,5 @@ copy_intervals_to_string (string, buffer, position, length)
1561 interval_copy->parent = (INTERVAL) string; 1564 interval_copy->parent = (INTERVAL) string;
1562 XSTRING (string)->intervals = interval_copy; 1565 XSTRING (string)->intervals = interval_copy;
1563} 1566}
1567
1568#endif /* USE_TEXT_PROPERTIES */