From b3e009ba9834c187160ecb99d34fb1f8bd222eed Mon Sep 17 00:00:00 2001 From: Aleksandr Vityazev Date: Sun, 24 Apr 2022 17:19:46 +0200 Subject: [PATCH] Fix typo in cl.texi example * doc/misc/cl.texi (Argument Lists): Fix typo (bug#55092). --- doc/misc/cl.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 2008f5a0796..6134b977517 100644 --- 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 -- 2.39.2