]> git.eshelyaron.com Git - emacs.git/commitdiff
(lambda): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 15 Dec 1994 18:25:24 +0000 (18:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 15 Dec 1994 18:25:24 +0000 (18:25 +0000)
lisp/subr.el

index 6523e48bdb44c01dabc3255b0900f7cf275b9e0a..427189f64a217fc063c0a92357377c8063c43096 100644 (file)
@@ -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.