diff options
| author | Stefan Monnier | 2002-11-19 15:56:28 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-11-19 15:56:28 +0000 |
| commit | a2e74caa23364af307342225e5d2edaec842167d (patch) | |
| tree | 7a0eb76c7ff951a6083b0609a77ebdc63dd9b480 | |
| parent | e429e0b87fbb250e6656d62d356c96246f54afd8 (diff) | |
| download | emacs-a2e74caa23364af307342225e5d2edaec842167d.tar.gz emacs-a2e74caa23364af307342225e5d2edaec842167d.zip | |
(multiple-value-call): Add docstring.
| -rw-r--r-- | lisp/emacs-lisp/cl.el | 4 |
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 | |||
| 229 | one value." | 229 | one value." |
| 230 | (apply function expression)) | 230 | (apply function expression)) |
| 231 | 231 | ||
| 232 | (defalias 'multiple-value-call 'apply) ; only works for one arg | 232 | (defalias 'multiple-value-call 'apply |
| 233 | "Apply FUNCTION to ARGUMENTS, taking multiple values into account. | ||
| 234 | This implementation only handles the case where there is only one argument.") | ||
| 233 | 235 | ||
| 234 | (defsubst nth-value (n expression) | 236 | (defsubst nth-value (n expression) |
| 235 | "Evaluate EXPRESSION to get multiple values and return the Nth one. | 237 | "Evaluate EXPRESSION to get multiple values and return the Nth one. |