From: Stefan Monnier Date: Tue, 19 Nov 2002 15:56:28 +0000 (+0000) Subject: (multiple-value-call): Add docstring. X-Git-Tag: ttn-vms-21-2-B4~12334 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a2e74caa23364af307342225e5d2edaec842167d;p=emacs.git (multiple-value-call): Add docstring. --- diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index 74cfc241df1..f2ced20e59e 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el @@ -229,7 +229,9 @@ right when EXPRESSION calls an ordinary Emacs Lisp function that returns just one value." (apply function expression)) -(defalias 'multiple-value-call 'apply) ; only works for one arg +(defalias 'multiple-value-call 'apply + "Apply FUNCTION to ARGUMENTS, taking multiple values into account. +This implementation only handles the case where there is only one argument.") (defsubst nth-value (n expression) "Evaluate EXPRESSION to get multiple values and return the Nth one.