summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/cl-lib.el
diff options
context:
space:
mode:
authorLeo Liu <sdl.web@gmail.com>2014-05-21 08:41:21 +0800
committerLeo Liu <sdl.web@gmail.com>2014-05-21 08:41:21 +0800
commit8ea51e4f0819f249424cbbbec12bf4c6d750513a (patch)
treeeec8dfb683e16b76d4d9743be8ead811e1407ba9 /lisp/emacs-lisp/cl-lib.el
parenta05affb23880007ad0b00acb7e9a37c2988703d0 (diff)
downloademacs-8ea51e4f0819f249424cbbbec12bf4c6d750513a.tar.gz
* emacs-lisp/cl-lib.el (cl-endp): Fix last change.
Diffstat (limited to 'lisp/emacs-lisp/cl-lib.el')
-rw-r--r--lisp/emacs-lisp/cl-lib.el2
1 files changed, 1 insertions, 1 deletions
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.")