]> code.delx.au - gnu-emacs/commitdiff
(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 6a6bde4f3282766b359e60d6768011da64e2bc4e..6c2b984940d911ba59e19be4beeb2c000fb7bf44 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\
 \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;
 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\
 
 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;
 Thus, (funcall 'cons 'x 'y) returns (x . y).")
   (nargs, args)
      int nargs;