aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-12-15 18:25:24 +0000
committerRichard M. Stallman1994-12-15 18:25:24 +0000
commitbec0d7f9d9f42d38d32f58203491b8a4de6c5b2e (patch)
treefb9fe966089ce2602a733f6e9711d498c74b67da
parent88f11b7de7870a9ba654c7532118ffb468999b5b (diff)
downloademacs-bec0d7f9d9f42d38d32f58203491b8a4de6c5b2e.tar.gz
emacs-bec0d7f9d9f42d38d32f58203491b8a4de6c5b2e.zip
(lambda): Doc fix.
-rw-r--r--lisp/subr.el5
1 files changed, 3 insertions, 2 deletions
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 @@
28A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is 28A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
29self-quoting; the result of evaluating the lambda expression is the 29self-quoting; the result of evaluating the lambda expression is the
30expression itself. The lambda expression may then be treated as a 30expression itself. The lambda expression may then be treated as a
31function, i. e. stored as the function value of a symbol, passed to 31function, i.e., stored as the function value of a symbol, passed to
32funcall or mapcar, etcetera. 32funcall or mapcar, etc.
33
33ARGS should take the same form as an argument list for a `defun'. 34ARGS should take the same form as an argument list for a `defun'.
34DOCSTRING should be a string, as described for `defun'. It may be omitted. 35DOCSTRING should be a string, as described for `defun'. It may be omitted.
35INTERACTIVE should be a call to the function `interactive', which see. 36INTERACTIVE should be a call to the function `interactive', which see.