(multiple-value-call): Add alias.

This commit is contained in:
Richard M. Stallman 2002-07-12 17:41:00 +00:00
parent 56ce04a351
commit f988b54154

View file

@ -229,6 +229,8 @@ 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
(defsubst nth-value (n expression)
"Evaluate EXPRESSION to get multiple values and return the Nth one.
This handles multiple values in Common Lisp style, but it does not work