summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/cl-lib.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-02-17 21:35:19 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2019-02-17 21:35:55 -0800
commit43f6fd434dd23fa7202ba95bd1cc3f41234ad609 (patch)
treee0becb0c3ad1bcc8c4aa047523abbd6cf514b763 /lisp/emacs-lisp/cl-lib.el
parent4f24b4a6dff0c257d1c1ea49338efcdff59446b0 (diff)
downloademacs-43f6fd434dd23fa7202ba95bd1cc3f41234ad609.tar.gz
emacs-43f6fd434dd23fa7202ba95bd1cc3f41234ad609.tar.bz2
emacs-43f6fd434dd23fa7202ba95bd1cc3f41234ad609.zip
* lisp/emacs-lisp/cl-lib.el (cl-endp): Remove stray 'x.
Diffstat (limited to 'lisp/emacs-lisp/cl-lib.el')
-rw-r--r--lisp/emacs-lisp/cl-lib.el2
1 files changed, 1 insertions, 1 deletions
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.")