]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/cl-lib.el (cl-endp): Remove stray 'x.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 18 Feb 2019 05:35:19 +0000 (21:35 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 18 Feb 2019 05:35:55 +0000 (21:35 -0800)
lisp/emacs-lisp/cl-lib.el

index 3756b52feb8f23aa0899212073c09a6de9ed530e..60c52c26ca39897ca0fa8a30cbde094d7ea7f296 100644 (file)
@@ -370,7 +370,7 @@ SEQ, this is like `mapcar'.  With several, it is like the Common Lisp
 Signal an error if X is not a list."
   (if (listp x)
       (null x)
-    (signal 'wrong-type-argument (list 'listp x 'x))))
+    (signal 'wrong-type-argument (list 'listp x))))
 
 (cl--defalias 'cl-third 'cl-caddr "Return the third element of the list X.")
 (cl--defalias 'cl-fourth 'cl-cadddr "Return the fourth element of the list X.")