aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-06-26 09:03:37 +0000
committerRichard M. Stallman <[email protected]>2002-06-26 09:03:37 +0000
commit8f7ef366417e56cc1ec34afb6fcc6f3409bc8e60 (patch)
treec74e9b154b46123f83c32e0bc47ebbf71ad5915f
parentaab5d2c5d91129adc193f679e8f3ceeb2e0d2d2a (diff)
(values): Simplify definition.
-rw-r--r--lisp/emacs-lisp/cl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el
index c5d3ef0832..9a5677237a 100644
--- a/lisp/emacs-lisp/cl.el
+++ b/lisp/emacs-lisp/cl.el
@@ -207,7 +207,7 @@ Keywords supported: :test :test-not :key"
"Return multiple values, Common Lisp style.
The arguments of `values' are the values
that the containing function should return."
- (apply 'list values))
+ values)
(defsubst values-list (list)
"Return multiple values, Common Lisp style, taken from a list.