aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2020-04-25 11:22:01 -0700
committerPaul Eggert2020-04-25 11:22:32 -0700
commit68f4a740a13ee6a1d98079ef655dd42924d24d41 (patch)
treea6ff930e4421e5b712a830ccfc88f6d70ff8551b
parentac31cd384ca0ecbc89a4d75723817ac3c4d3e554 (diff)
downloademacs-68f4a740a13ee6a1d98079ef655dd42924d24d41.tar.gz
emacs-68f4a740a13ee6a1d98079ef655dd42924d24d41.zip
Remove doc duplication
* doc/lispref/objects.texi (Constants and Mutability): Remove duplication. From a suggestion by Andreas Schwab (Bug#40671#150).
-rw-r--r--doc/lispref/objects.texi3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index b4e9ff44112..1d5b2c690fe 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -2402,8 +2402,7 @@ call @code{(make-string 3 ?a)} yields a mutable string that can be
2402changed via later calls to @code{aset}. 2402changed via later calls to @code{aset}.
2403 2403
2404 A mutable object can become constant if it is part of an expression 2404 A mutable object can become constant if it is part of an expression
2405that is evaluated, because a program should not modify an object 2405that is evaluated. The reverse does not occur: constant objects
2406that is being evaluated. The reverse does not occur: constant objects
2407should stay constant. 2406should stay constant.
2408 2407
2409 Trying to modify a constant variable signals an error 2408 Trying to modify a constant variable signals an error