# HG changeset patch # User Noah Friedman # Date 707346806 0 # Node ID 47871343371e67fb66f0bc168fd6cc319ce212a2 # Parent ded061ae23c8ac57adad8b0a98d23fbe02398429 *** empty log message *** diff -r ded061ae23c8 -r 47871343371e lisp/subr.el --- 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