Mercurial > emacs
changeset 667:ded061ae23c8
*** empty log message ***
author | Noah Friedman <friedman@splode.com> |
---|---|
date | Sun, 31 May 1992 21:09:48 +0000 |
parents | 7fa6b835da67 |
children | 47871343371e |
files | lisp/subr.el |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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