1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-12 09:28:24 +00:00

* intervals.c: Conditionalize all functions on

"USE_TEXT_PROPERTIES".
This commit is contained in:
Joseph Arceneaux 1992-10-02 20:02:51 +00:00
parent d5e35230b5
commit d2f7a8023e

View File

@ -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 */