From: Leo Liu Date: Wed, 21 May 2014 00:41:21 +0000 (+0800) Subject: * emacs-lisp/cl-lib.el (cl-endp): Fix last change. X-Git-Tag: emacs-25.0.90~2640^2~77 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8ea51e4f0819f249424cbbbec12bf4c6d750513a;p=emacs.git * emacs-lisp/cl-lib.el (cl-endp): Fix last change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 733d060f453..5a720aa19ec 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2014-05-21 Leo Liu + + * emacs-lisp/cl-lib.el (cl-endp): Fix last change. + 2014-05-19 Leo Liu * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics. diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index 9ca9459987f..c4b9673aa2a 100644 --- a/lisp/emacs-lisp/cl-lib.el +++ b/lisp/emacs-lisp/cl-lib.el @@ -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.")