diff options
| author | Paul Eggert | 2020-04-25 11:22:01 -0700 |
|---|---|---|
| committer | Paul Eggert | 2020-04-25 11:22:32 -0700 |
| commit | 68f4a740a13ee6a1d98079ef655dd42924d24d41 (patch) | |
| tree | a6ff930e4421e5b712a830ccfc88f6d70ff8551b | |
| parent | ac31cd384ca0ecbc89a4d75723817ac3c4d3e554 (diff) | |
| download | emacs-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.texi | 3 |
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 | |||
| 2402 | changed via later calls to @code{aset}. | 2402 | changed 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 |
| 2405 | that is evaluated, because a program should not modify an object | 2405 | that is evaluated. The reverse does not occur: constant objects |
| 2406 | that is being evaluated. The reverse does not occur: constant objects | ||
| 2407 | should stay constant. | 2406 | should stay constant. |
| 2408 | 2407 | ||
| 2409 | Trying to modify a constant variable signals an error | 2408 | Trying to modify a constant variable signals an error |