From: Richard M. Stallman Date: Thu, 15 Dec 1994 18:25:24 +0000 (+0000) Subject: (lambda): Doc fix. X-Git-Tag: emacs-19.34~5677 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bec0d7f9d9f42d38d32f58203491b8a4de6c5b2e;p=emacs.git (lambda): Doc fix. --- diff --git a/lisp/subr.el b/lisp/subr.el index 6523e48bdb4..427189f64a2 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -28,8 +28,9 @@ A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is self-quoting; the result of evaluating the lambda expression is the expression itself. The lambda expression may then be treated as a -function, i. e. stored as the function value of a symbol, passed to -funcall or mapcar, etcetera. +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. INTERACTIVE should be a call to the function `interactive', which see.