projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a6fa4c
)
Fix typo in cl.texi example
author
Aleksandr Vityazev
<avityazev@posteo.org>
Sun, 24 Apr 2022 15:19:46 +0000
(17:19 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Sun, 24 Apr 2022 15:19:46 +0000
(17:19 +0200)
* doc/misc/cl.texi (Argument Lists): Fix typo (bug#55092).
doc/misc/cl.texi
patch
|
blob
|
history
diff --git
a/doc/misc/cl.texi
b/doc/misc/cl.texi
index 2008f5a0796f6795c7ef4b9b1d45b97eb1da715d..6134b977517884763fb41e872bc41a975c5c2f58 100644
(file)
--- a/
doc/misc/cl.texi
+++ b/
doc/misc/cl.texi
@@
-444,7
+444,7
@@
the ``rest'' argument is bound to the keyword list as it appears
in the call. For example:
@example
-(cl-defun find-thing (thing &rest rest &key need &allow-other-keys)
+(cl-defun find-thing (thing
thing-list
&rest rest &key need &allow-other-keys)
(or (apply 'cl-member thing thing-list :allow-other-keys t rest)
(if need (error "Thing not found"))))
@end example