From: Paul Eggert Date: Mon, 18 Feb 2019 05:35:19 +0000 (-0800) Subject: * lisp/emacs-lisp/cl-lib.el (cl-endp): Remove stray 'x. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~19^2~3979 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=43f6fd434dd23fa7202ba95bd1cc3f41234ad609;p=emacs.git * lisp/emacs-lisp/cl-lib.el (cl-endp): Remove stray 'x. --- diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index 3756b52feb8..60c52c26ca3 100644 --- a/lisp/emacs-lisp/cl-lib.el +++ b/lisp/emacs-lisp/cl-lib.el @@ -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.")