# HG changeset patch # User Noah Friedman # Date 707346588 0 # Node ID ded061ae23c8ac57adad8b0a98d23fbe02398429 # Parent 7fa6b835da67c4b4f130f6ca8d98f372f3b41ee4 *** empty log message *** diff -r 7fa6b835da67 -r ded061ae23c8 lisp/subr.el --- a/lisp/subr.el Sun May 31 19:41:40 1992 +0000 +++ b/lisp/subr.el Sun May 31 21:09:48 1992 +0000 @@ -344,6 +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." (` (function (lambda (,@ cdr))))) ;;; subr.el ends here