aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.