Skip to content

Commit

Permalink
* lisp/emacs-lisp/cl-lib.el (cl-endp): Remove stray 'x.
Browse files Browse the repository at this point in the history
  • Loading branch information
eggert committed Feb 18, 2019
1 parent 4f24b4a commit 43f6fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/emacs-lisp/cl-lib.el
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down

0 comments on commit 43f6fd4

Please sign in to comment.