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:
parent
a05affb238
commit
8ea51e4f08
@ -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.
|
||||
|
@ -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.")
|
||||
|
Loading…
Reference in New Issue
Block a user