* lisp/emacs-lisp/cl-lib.el (cl-endp): Remove stray 'x.

This commit is contained in:
Paul Eggert 2019-02-17 21:35:19 -08:00
parent 4f24b4a6df
commit 43f6fd434d

View 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.")