* lisp/emacs-lisp/cl-lib.el (cl-endp): Remove stray 'x.
This commit is contained in:
parent
4f24b4a6df
commit
43f6fd434d
1 changed files with 1 additions and 1 deletions
|
@ -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.")
|
||||
|
|
Loading…
Add table
Reference in a new issue