]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak mutability doc a bit more
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 25 Apr 2020 02:19:31 +0000 (19:19 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 25 Apr 2020 02:20:38 +0000 (19:20 -0700)
Inspired by a comment from Michael Heerdegen (Bug#40671#114).
* doc/lispref/objects.texi (Constants and Mutability): Tweak further.

doc/lispref/objects.texi

index 1eda94ab63e7a66711c4a3da96b02d1c5088e6cd..b4e9ff44112b82958079d7a27902bafa420f9c17 100644 (file)
@@ -2401,8 +2401,8 @@ literal @code{"aaa"} yields a constant string, whereas the function
 call @code{(make-string 3 ?a)} yields a mutable string that can be
 changed via later calls to @code{aset}.
 
-  A mutable object can become constant if it is passed to the
-@code{eval} function, because a program should not modify an object
+  A mutable object can become constant if it is part of an expression
+that is evaluated, because a program should not modify an object
 that is being evaluated.  The reverse does not occur: constant objects
 should stay constant.