Mercurial > emacs
changeset 12583:73ac42b9be24
(Ffuncall, Fapply): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 18 Jul 1995 19:16:16 +0000 |
parents | 5f8972720e72 |
children | 462dd843fd8c |
files | src/eval.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Tue Jul 18 19:14:38 1995 +0000 +++ b/src/eval.c Tue Jul 18 19:16:16 1995 +0000 @@ -1738,6 +1738,7 @@ DEFUN ("apply", Fapply, Sapply, 2, MANY, 0, "Call FUNCTION with our remaining args, using our last arg as list of args.\n\ +Then return the value FUNCTION returns.\n\ Thus, (apply '+ 1 2 '(3 4)) returns 10.") (nargs, args) int nargs; @@ -1994,6 +1995,7 @@ DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, "Call first argument as a function, passing remaining arguments to it.\n\ +Return the value that function returns.\n\ Thus, (funcall 'cons 'x 'y) returns (x . y).") (nargs, args) int nargs;