diff options
| author | Joseph Arceneaux | 1992-10-02 20:02:51 +0000 |
|---|---|---|
| committer | Joseph Arceneaux | 1992-10-02 20:02:51 +0000 |
| commit | d2f7a8023e2ad9e6bd6075626e8e870bf7507754 (patch) | |
| tree | 7bb90634798ba7c9fb57cc14bf08b2efea9bd40c /src | |
| parent | d5e35230b582132c7246f117c118151500cfa595 (diff) | |
| download | emacs-d2f7a8023e2ad9e6bd6075626e8e870bf7507754.tar.gz emacs-d2f7a8023e2ad9e6bd6075626e8e870bf7507754.zip | |
* intervals.c: Conditionalize all functions on
"USE_TEXT_PROPERTIES".
Diffstat (limited to 'src')
| -rw-r--r-- | src/intervals.c | 5 |
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. */ |
| 48 | Lisp_Object interval_balance_threshold; | 51 | Lisp_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 */ | ||