summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/cl.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2002-11-19 15:56:28 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2002-11-19 15:56:28 +0000
commita2e74caa23364af307342225e5d2edaec842167d (patch)
tree7a0eb76c7ff951a6083b0609a77ebdc63dd9b480 /lisp/emacs-lisp/cl.el
parente429e0b87fbb250e6656d62d356c96246f54afd8 (diff)
downloademacs-a2e74caa23364af307342225e5d2edaec842167d.tar.gz
(multiple-value-call): Add docstring.
Diffstat (limited to 'lisp/emacs-lisp/cl.el')
-rw-r--r--lisp/emacs-lisp/cl.el4
1 files changed, 3 insertions, 1 deletions
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.