Skip to content

Commit 43f6fd4

Browse files
committed
* lisp/emacs-lisp/cl-lib.el (cl-endp): Remove stray 'x.
1 parent 4f24b4a commit 43f6fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp/emacs-lisp/cl-lib.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ SEQ, this is like `mapcar'. With several, it is like the Common Lisp
370370
Signal an error if X is not a list."
371371
(if (listp x)
372372
(null x)
373-
(signal 'wrong-type-argument (list 'listp x 'x))))
373+
(signal 'wrong-type-argument (list 'listp x))))
374374

375375
(cl--defalias 'cl-third 'cl-caddr "Return the third element of the list X.")
376376
(cl--defalias 'cl-fourth 'cl-cadddr "Return the fourth element of the list X.")

0 commit comments

Comments
 (0)