diff options
author | Glenn Morris <rgm@gnu.org> | 2021-07-16 07:51:35 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2021-07-16 07:51:35 -0700 |
commit | 45cdc89986bb4ee60d7b64ee6ba0f717869aae5a (patch) | |
tree | 57f7596bed494a2863d1e3a706258486f5f50feb /doc/lispref/lists.texi | |
parent | d8d9504c5a9f1b6d22eae131334b981c65881f0e (diff) | |
parent | 7ac411ae2ce91572a2bdb8eaa1ee6ceccf162e35 (diff) | |
download | emacs-45cdc89986bb4ee60d7b64ee6ba0f717869aae5a.tar.gz emacs-45cdc89986bb4ee60d7b64ee6ba0f717869aae5a.tar.bz2 emacs-45cdc89986bb4ee60d7b64ee6ba0f717869aae5a.zip |
Merge from origin/emacs-27
7ac411ae2c (origin/emacs-27) ; * src/data.c (Fcar, Fcdr): Doc fix.
0d9e1826f7 One more minor update of the Emacs manual for 19th printing
92616d30e0 ; Fix let-alist Texinfo markup
c13acf8e34 ; * doc/emacs/mule.texi (International Chars): Mention 'de...
Diffstat (limited to 'doc/lispref/lists.texi')
-rw-r--r-- | doc/lispref/lists.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi index 2805b1f5fdc..ac99835f7b3 100644 --- a/doc/lispref/lists.texi +++ b/doc/lispref/lists.texi @@ -1804,7 +1804,7 @@ through a simple example: (let-alist colors (if (eq .rose 'red) .lily)) -=> white + @result{} white @end lisp The @var{body} is inspected at compilation time, and only the symbols @@ -1820,7 +1820,7 @@ Nested association lists is supported: (let-alist colors (if (eq .rose 'red) .lily.belladonna)) -=> yellow + @result{} yellow @end lisp Nesting @code{let-alist} inside each other is allowed, but the code in |