# HG changeset patch # User Richard M. Stallman # Date 1025082217 0 # Node ID 38072df535c838ec2f0f162947533105725b38b8 # Parent 312f417a8513c23ac2dc0adddca277ce76e35410 (values): Simplify definition. diff -r 312f417a8513 -r 38072df535c8 lisp/emacs-lisp/cl.el --- a/lisp/emacs-lisp/cl.el Wed Jun 26 08:59:32 2002 +0000 +++ b/lisp/emacs-lisp/cl.el Wed Jun 26 09:03:37 2002 +0000 @@ -207,7 +207,7 @@ "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.