diff lisp/subr.el @ 1543:acdf9d64d086

Doc fix.
author Christopher Zaborsky <rogue@erratum.com>
date Tue, 03 Nov 1992 22:47:23 +0000
parents 60e0dc538df3
children dd7b72d023ad
line wrap: on
line diff
--- a/lisp/subr.el	Tue Nov 03 22:25:28 1992 +0000
+++ b/lisp/subr.el	Tue Nov 03 22:47:23 1992 +0000
@@ -410,9 +410,9 @@
 
 
 (defmacro lambda (&rest cdr)
-  "Macro which allows one to write (lambda ...) for anonymous functions
-instead of having to write (function (lambda ...)) or '(lambda ...), the
-latter of which won't get byte-compiled."
+  "Macro which allows one to write (lambda ...) for anonymous functions.
+This is instead of having to write (function (lambda ...)) or
+'(lambda ...), the latter of which won't get byte-compiled."
   (` (function (lambda (,@ cdr)))))
 
 ;;; subr.el ends here