summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-12-15 18:25:24 +0000
committerRichard M. Stallman <rms@gnu.org>1994-12-15 18:25:24 +0000
commiteec051d2cf671d5916198b38b4b25012ca77f37c (patch)
treecf196d495fe1d09d16ad9849e6507816538a3958 /lisp/subr.el
parent0c90b2e75fb4948f0912ca6ce3ce784421eab49e (diff)
downloademacs-eec051d2cf671d5916198b38b4b25012ca77f37c.tar.gz
(lambda): Doc fix.
Diffstat (limited to 'lisp/subr.el')
-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 @@
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.