mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
Fix typo in cl.texi example
* doc/misc/cl.texi (Argument Lists): Fix typo (bug#55092).
This commit is contained in:
parent
1a6fa4c5d5
commit
b3e009ba98
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue