]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in cl.texi example
authorAleksandr Vityazev <avityazev@posteo.org>
Sun, 24 Apr 2022 15:19:46 +0000 (17:19 +0200)
committerLars 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

index 2008f5a0796f6795c7ef4b9b1d45b97eb1da715d..6134b977517884763fb41e872bc41a975c5c2f58 100644 (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