Mercurial > emacs
changeset 48462:b9d1a3c5291e
(multiple-value-call): Add docstring.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 19 Nov 2002 15:56:28 +0000 |
parents | eb94fa4ed0c0 |
children | 52d1540e037c |
files | lisp/emacs-lisp/cl.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/cl.el Tue Nov 19 15:56:01 2002 +0000 +++ b/lisp/emacs-lisp/cl.el Tue Nov 19 15:56:28 2002 +0000 @@ -229,7 +229,9 @@ 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.