(Ffuncall, Fapply): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Tue, 18 Jul 1995 19:16:16 +0000 (19:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 18 Jul 1995 19:16:16 +0000 (19:16 +0000)
src/eval.c

index 6a6bde4..6c2b984 100644 (file)
@@ -1738,6 +1738,7 @@ DEFUN ("eval", Feval, Seval, 1, 1, 0,
 \f
 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 @@ call6 (fn, arg1, arg2, arg3, arg4, arg5, arg6)
 
 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;