diff options
| author | Richard M. Stallman | 1995-07-18 19:16:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-07-18 19:16:16 +0000 |
| commit | fd7fe9a18fb3a3d6923595357908f132eab41ba7 (patch) | |
| tree | 1562af43d2c2b2b46dbf5c6c93287d69df937d30 /src/eval.c | |
| parent | 994662ce7a366fbb8438f3c89c990f27592eaac0 (diff) | |
| download | emacs-fd7fe9a18fb3a3d6923595357908f132eab41ba7.tar.gz emacs-fd7fe9a18fb3a3d6923595357908f132eab41ba7.zip | |
(Ffuncall, Fapply): Doc fix.
Diffstat (limited to 'src/eval.c')
| -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; |