aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasil L. Contovounesios2021-07-09 14:37:50 +0100
committerBasil L. Contovounesios2021-07-09 14:37:50 +0100
commit92616d30e0a4b5b052d4115c91079f1a14b6d965 (patch)
tree6dae17eb5302ce9e09f9f13a6f03cebeec0a45a6
parentc13acf8e346894304921548a9d310c9d80a20d22 (diff)
downloademacs-92616d30e0a4b5b052d4115c91079f1a14b6d965.tar.gz
emacs-92616d30e0a4b5b052d4115c91079f1a14b6d965.zip
; Fix let-alist Texinfo markup
* doc/lispref/lists.texi (Association Lists): Use @result (bug#34842).
-rw-r--r--doc/lispref/lists.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index c54496f6168..4697256e078 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -1803,7 +1803,7 @@ through a simple example:
1803(let-alist colors 1803(let-alist colors
1804 (if (eq .rose 'red) 1804 (if (eq .rose 'red)
1805 .lily)) 1805 .lily))
1806=> white 1806 @result{} white
1807@end lisp 1807@end lisp
1808 1808
1809The @var{body} is inspected at compilation time, and only the symbols 1809The @var{body} is inspected at compilation time, and only the symbols
@@ -1819,7 +1819,7 @@ Nested association lists is supported:
1819(let-alist colors 1819(let-alist colors
1820 (if (eq .rose 'red) 1820 (if (eq .rose 'red)
1821 .lily.belladonna)) 1821 .lily.belladonna))
1822=> yellow 1822 @result{} yellow
1823@end lisp 1823@end lisp
1824 1824
1825Nesting @code{let-alist} inside each other is allowed, but the code in 1825Nesting @code{let-alist} inside each other is allowed, but the code in