changeset 668:47871343371e

*** empty log message ***
author Noah Friedman <friedman@splode.com>
date Sun, 31 May 1992 21:13:26 +0000
parents ded061ae23c8
children 4c64c671426f
files lisp/subr.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Sun May 31 21:09:48 1992 +0000
+++ b/lisp/subr.el	Sun May 31 21:13:26 1992 +0000
@@ -344,9 +344,9 @@
 
 
 (defmacro lambda (&rest cdr)
-  "Allows one to write (lambda ...) to write 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
+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