emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117131: * emacs-lisp/cl-lib.el (cl-endp): Fix last


From: Leo Liu
Subject: [Emacs-diffs] trunk r117131: * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
Date: Wed, 21 May 2014 00:46:07 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117131
revision-id: address@hidden
parent: address@hidden
committer: Leo Liu <address@hidden>
branch nick: trunk
timestamp: Wed 2014-05-21 08:41:21 +0800
message:
  * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/cl-lib.el      cl.el-20091113204419-o5vbwnq5f7feedwu-614
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-05-19 16:08:40 +0000
+++ b/lisp/ChangeLog    2014-05-21 00:41:21 +0000
@@ -1,3 +1,7 @@
+2014-05-21  Leo Liu  <address@hidden>
+
+       * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
+
 2014-05-19  Leo Liu  <address@hidden>
 
        * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.

=== modified file 'lisp/emacs-lisp/cl-lib.el'
--- a/lisp/emacs-lisp/cl-lib.el 2014-05-19 16:08:40 +0000
+++ b/lisp/emacs-lisp/cl-lib.el 2014-05-21 00:41:21 +0000
@@ -364,7 +364,7 @@
 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.")


reply via email to

[Prev in Thread] Current Thread [Next in Thread]