1
Fork 0
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:
Aleksandr Vityazev 2022-04-24 17:19:46 +02:00 committed by Lars Ingebrigtsen
parent 1a6fa4c5d5
commit b3e009ba98

View file

@ -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