projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c13acf8
)
; Fix let-alist Texinfo markup
author
Basil L. Contovounesios
<contovob@tcd.ie>
Fri, 9 Jul 2021 13:37:50 +0000
(14:37 +0100)
committer
Basil L. Contovounesios
<contovob@tcd.ie>
Fri, 9 Jul 2021 13:37:50 +0000
(14:37 +0100)
* doc/lispref/lists.texi (Association Lists): Use
@result (bug#34842).
doc/lispref/lists.texi
patch
|
blob
|
history
diff --git
a/doc/lispref/lists.texi
b/doc/lispref/lists.texi
index c54496f616888286bd0992388f794774b241f0e0..4697256e078ce0a5b162a601cd588d0c6f2931a1 100644
(file)
--- a/
doc/lispref/lists.texi
+++ b/
doc/lispref/lists.texi
@@
-1803,7
+1803,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
@@
-1819,7
+1819,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