Mercurial > emacs
changeset 4212:a696547fb51e
(compact_strings): Add USE_TEXT_PROPERTIES conditional.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 21 Jul 1993 22:29:26 +0000 |
parents | b2e422a86641 |
children | 616036bb2427 |
files | src/alloc.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Wed Jul 21 22:25:42 1993 +0000 +++ b/src/alloc.c Wed Jul 21 22:29:26 1993 +0000 @@ -2082,6 +2082,7 @@ /* Store the actual size in the size field. */ newaddr->size = size; +#ifdef USE_TEXT_PROPERTIES /* Now that the string has been relocated, rebalance its interval tree, and update the tree's parent pointer. */ if (! NULL_INTERVAL_P (newaddr->intervals)) @@ -2091,6 +2092,7 @@ Lisp_String, newaddr); } +#endif /* USE_TEXT_PROPERTIES */ } pos += STRING_FULLSIZE (size); }