diff options
| author | Leo Liu | 2014-05-21 08:41:21 +0800 |
|---|---|---|
| committer | Leo Liu | 2014-05-21 08:41:21 +0800 |
| commit | 8ea51e4f0819f249424cbbbec12bf4c6d750513a (patch) | |
| tree | eec8dfb683e16b76d4d9743be8ead811e1407ba9 | |
| parent | a05affb23880007ad0b00acb7e9a37c2988703d0 (diff) | |
| download | emacs-8ea51e4f0819f249424cbbbec12bf4c6d750513a.tar.gz emacs-8ea51e4f0819f249424cbbbec12bf4c6d750513a.zip | |
* emacs-lisp/cl-lib.el (cl-endp): Fix last change.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-lib.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 733d060f453..5a720aa19ec 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-05-21 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp/cl-lib.el (cl-endp): Fix last change. | ||
| 4 | |||
| 1 | 2014-05-19 Leo Liu <sdl.web@gmail.com> | 5 | 2014-05-19 Leo Liu <sdl.web@gmail.com> |
| 2 | 6 | ||
| 3 | * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics. | 7 | * 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 | |||
| 364 | Signal an error if X is not a list." | 364 | Signal an error if X is not a list." |
| 365 | (if (listp x) | 365 | (if (listp x) |
| 366 | (null x) | 366 | (null x) |
| 367 | (signal 'wrong-type-argument (list 'list x 'x)))) | 367 | (signal 'wrong-type-argument (list 'listp x 'x)))) |
| 368 | 368 | ||
| 369 | (cl--defalias 'cl-third 'cl-caddr "Return the third element of the list X.") | 369 | (cl--defalias 'cl-third 'cl-caddr "Return the third element of the list X.") |
| 370 | (cl--defalias 'cl-fourth 'cl-cadddr "Return the fourth element of the list X.") | 370 | (cl--defalias 'cl-fourth 'cl-cadddr "Return the fourth element of the list X.") |