# HG changeset patch # User Richard M. Stallman # Date 743293766 0 # Node ID a696547fb51e250a46ca593b87b09ca01d09c67c # Parent b2e422a86641af26a3e5503cf9eeca18b66f4a8c (compact_strings): Add USE_TEXT_PROPERTIES conditional. diff -r b2e422a86641 -r a696547fb51e src/alloc.c --- 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); }