From: Richard M. Stallman Date: Tue, 27 Jun 1995 06:52:56 +0000 (+0000) Subject: (lambda): Doc fix. X-Git-Tag: emacs-19.34~3464 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8fd68088e946c1fb1cd63f371a91a9a160f9c23b;p=emacs.git (lambda): Doc fix. --- diff --git a/lisp/subr.el b/lisp/subr.el index 65a22d1f116..2c0ebd7617b 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -32,7 +32,9 @@ function, i.e., stored as the function value of a symbol, passed to funcall or mapcar, etc. ARGS should take the same form as an argument list for a `defun'. -DOCSTRING should be a string, as described for `defun'. It may be omitted. +DOCSTRING is an optional documentation string. + If present, it should describe how to call the function. + But documentation strings are usually not useful in nameless functions. INTERACTIVE should be a call to the function `interactive', which see. It may also be omitted. BODY should be a list of lisp expressions."