Mercurial > emacs
changeset 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 | b13b79e28eb5 |
children | 538cc0cd6d83 |
files | src/intervals.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
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 */