1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

* emacs-lisp/cl-lib.el (cl-endp): Fix last change.

This commit is contained in:
Leo Liu 2014-05-21 08:41:21 +08:00
parent a05affb238
commit 8ea51e4f08
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-05-21 Leo Liu <sdl.web@gmail.com>
* emacs-lisp/cl-lib.el (cl-endp): Fix last change.
2014-05-19 Leo Liu <sdl.web@gmail.com>
* emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.

View File

@ -364,7 +364,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 'list x 'x))))
(signal 'wrong-type-argument (list 'listp x '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.")