From: Richard M. Stallman Date: Wed, 21 Jul 1993 22:29:26 +0000 (+0000) Subject: (compact_strings): Add USE_TEXT_PROPERTIES conditional. X-Git-Tag: emacs-19.34~11639 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5f60ed47d9d0481a30981e248a738dfe1b143e3c;p=emacs.git (compact_strings): Add USE_TEXT_PROPERTIES conditional. --- diff --git a/src/alloc.c b/src/alloc.c index 93146526118..a411071067f 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -2082,6 +2082,7 @@ compact_strings () /* 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 @@ compact_strings () Lisp_String, newaddr); } +#endif /* USE_TEXT_PROPERTIES */ } pos += STRING_FULLSIZE (size); }