]> code.delx.au - gnu-emacs/commitdiff
* emacs-lisp/cl-lib.el (cl-endp): Fix last change.
authorLeo Liu <sdl.web@gmail.com>
Wed, 21 May 2014 00:41:21 +0000 (08:41 +0800)
committerLeo Liu <sdl.web@gmail.com>
Wed, 21 May 2014 00:41:21 +0000 (08:41 +0800)
lisp/ChangeLog
lisp/emacs-lisp/cl-lib.el

index 733d060f453233bcd763a9184b6a3347c1ba5c2d..5a720aa19ec6fc98cac84961040091ab85e4113f 100644 (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.
index 9ca9459987fef42919ad2c0c4974ae49627a4142..c4b9673aa2a5c49eecf76f246fa2fc701c4a3f30 100644 (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.")