(multiple-value-call): Add docstring.
This commit is contained in:
parent
e429e0b87f
commit
a2e74caa23
1 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue