diff options
| author | Mattias EngdegÄrd | 2025-12-12 11:52:38 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2025-12-12 12:43:28 +0100 |
| commit | ff85f48c2ceef544b22ff4ae28efd9b7cccdafed (patch) | |
| tree | 1ca73f15973b1bac88158e715e44f0fcdfa150e5 /doc | |
| parent | 5959c96f8b0e2174a39dc707526e70a7c96b026b (diff) | |
| download | emacs-ff85f48c2ceef544b22ff4ae28efd9b7cccdafed.tar.gz emacs-ff85f48c2ceef544b22ff4ae28efd9b7cccdafed.zip | |
* doc/lispref/eval.texi (Backquote): Clarify and simplify.
The previous phrasing could be read as if backquote expansion were
mutable if containing substitions, but that is simply not true;
they should always be treated as non-mutable.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/eval.texi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/lispref/eval.texi b/doc/lispref/eval.texi index 0982145d652..ddf67a09671 100644 --- a/doc/lispref/eval.texi +++ b/doc/lispref/eval.texi | |||
| @@ -704,8 +704,7 @@ Here are some examples: | |||
| 704 | @end group | 704 | @end group |
| 705 | @end example | 705 | @end example |
| 706 | 706 | ||
| 707 | If a subexpression of a backquote construct has no substitutions or | 707 | A backquote construct acts like @code{quote} in that it yields conses, |
| 708 | splices, it acts like @code{quote} in that it yields conses, | ||
| 709 | vectors and strings that might be shared and should not be modified. | 708 | vectors and strings that might be shared and should not be modified. |
| 710 | @xref{Self-Evaluating Forms}. | 709 | @xref{Self-Evaluating Forms}. |
| 711 | 710 | ||