# HG changeset patch # User Joseph Arceneaux # Date 718056171 0 # Node ID 5a27062b8b7f3dd4b8e1fd87d106f1ea61c425cb # Parent b13b79e28eb5625ef95a887e30d58557980f2f35 * intervals.c: Conditionalize all functions on "USE_TEXT_PROPERTIES". diff -r b13b79e28eb5 -r 5a27062b8b7f src/intervals.c --- 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 */