comparison lisp/subr.el @ 10178:be0081d9ba76

(lambda): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Thu, 15 Dec 1994 18:25:24 +0000
parents 3b058e13d177
children 1ac3c8fea14a
comparison
equal deleted inserted replaced
10177:6270254bfd9a 10178:be0081d9ba76
26 (defmacro lambda (&rest cdr) 26 (defmacro lambda (&rest cdr)
27 "Return a lambda expression. 27 "Return a lambda expression.
28 A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is 28 A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
29 self-quoting; the result of evaluating the lambda expression is the 29 self-quoting; the result of evaluating the lambda expression is the
30 expression itself. The lambda expression may then be treated as a 30 expression itself. The lambda expression may then be treated as a
31 function, i. e. stored as the function value of a symbol, passed to 31 function, i.e., stored as the function value of a symbol, passed to
32 funcall or mapcar, etcetera. 32 funcall or mapcar, etc.
33
33 ARGS should take the same form as an argument list for a `defun'. 34 ARGS should take the same form as an argument list for a `defun'.
34 DOCSTRING should be a string, as described for `defun'. It may be omitted. 35 DOCSTRING should be a string, as described for `defun'. It may be omitted.
35 INTERACTIVE should be a call to the function `interactive', which see. 36 INTERACTIVE should be a call to the function `interactive', which see.
36 It may also be omitted. 37 It may also be omitted.
37 BODY should be a list of lisp expressions." 38 BODY should be a list of lisp expressions."