diff options
| author | Richard M. Stallman | 1997-08-24 20:47:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-24 20:47:54 +0000 |
| commit | 329945b8d0c81fdf4b2e68346f970e7ff7207095 (patch) | |
| tree | ffde3aa080d1087455a0ffcc1b50e25ec3e5e5e7 | |
| parent | 573d18cb3d48005e617d2b1bccbb359b93150d09 (diff) | |
| download | emacs-329945b8d0c81fdf4b2e68346f970e7ff7207095.tar.gz emacs-329945b8d0c81fdf4b2e68346f970e7ff7207095.zip | |
(last): Function renmed to last*.
| -rw-r--r-- | lisp/emacs-lisp/cl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index 72320d57e30..80db4d9555d 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el | |||
| @@ -499,7 +499,7 @@ SEQ, this is like `mapcar'. With several, it is like the Common Lisp | |||
| 499 | "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X." | 499 | "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X." |
| 500 | (cdr (cdr (cdr (cdr x))))) | 500 | (cdr (cdr (cdr (cdr x))))) |
| 501 | 501 | ||
| 502 | (defun last (x &optional n) | 502 | (defun last* (x &optional n) |
| 503 | "Returns the last link in the list LIST. | 503 | "Returns the last link in the list LIST. |
| 504 | With optional argument N, returns Nth-to-last link (default 1)." | 504 | With optional argument N, returns Nth-to-last link (default 1)." |
| 505 | (if n | 505 | (if n |