Mercurial > emacs
diff src/alloc.c @ 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 | 0b32ee899a3a |
| children | 15b073a6c860 |
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); }
