diff options
| author | Richard M. Stallman | 2002-06-26 09:03:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-06-26 09:03:37 +0000 |
| commit | 8f7ef366417e56cc1ec34afb6fcc6f3409bc8e60 (patch) | |
| tree | c74e9b154b46123f83c32e0bc47ebbf71ad5915f | |
| parent | aab5d2c5d91129adc193f679e8f3ceeb2e0d2d2a (diff) | |
| download | emacs-8f7ef366417e56cc1ec34afb6fcc6f3409bc8e60.tar.gz emacs-8f7ef366417e56cc1ec34afb6fcc6f3409bc8e60.zip | |
(values): Simplify definition.
| -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 c5d3ef0832e..9a5677237a8 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el | |||
| @@ -207,7 +207,7 @@ Keywords supported: :test :test-not :key" | |||
| 207 | "Return multiple values, Common Lisp style. | 207 | "Return multiple values, Common Lisp style. |
| 208 | The arguments of `values' are the values | 208 | The arguments of `values' are the values |
| 209 | that the containing function should return." | 209 | that the containing function should return." |
| 210 | (apply 'list values)) | 210 | values) |
| 211 | 211 | ||
| 212 | (defsubst values-list (list) | 212 | (defsubst values-list (list) |
| 213 | "Return multiple values, Common Lisp style, taken from a list. | 213 | "Return multiple values, Common Lisp style, taken from a list. |