diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 6a6bde4f328..6c2b984940d 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1738,6 +1738,7 @@ DEFUN ("eval", Feval, Seval, 1, 1, 0, | |||
| 1738 | 1738 | ||
| 1739 | DEFUN ("apply", Fapply, Sapply, 2, MANY, 0, | 1739 | DEFUN ("apply", Fapply, Sapply, 2, MANY, 0, |
| 1740 | "Call FUNCTION with our remaining args, using our last arg as list of args.\n\ | 1740 | "Call FUNCTION with our remaining args, using our last arg as list of args.\n\ |
| 1741 | Then return the value FUNCTION returns.\n\ | ||
| 1741 | Thus, (apply '+ 1 2 '(3 4)) returns 10.") | 1742 | Thus, (apply '+ 1 2 '(3 4)) returns 10.") |
| 1742 | (nargs, args) | 1743 | (nargs, args) |
| 1743 | int nargs; | 1744 | int nargs; |
| @@ -1994,6 +1995,7 @@ call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6) | |||
| 1994 | 1995 | ||
| 1995 | DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, | 1996 | DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, |
| 1996 | "Call first argument as a function, passing remaining arguments to it.\n\ | 1997 | "Call first argument as a function, passing remaining arguments to it.\n\ |
| 1998 | Return the value that function returns.\n\ | ||
| 1997 | Thus, (funcall 'cons 'x 'y) returns (x . y).") | 1999 | Thus, (funcall 'cons 'x 'y) returns (x . y).") |
| 1998 | (nargs, args) | 2000 | (nargs, args) |
| 1999 | int nargs; | 2001 | int nargs; |