comparison lisp/subr.el @ 667:ded061ae23c8

*** empty log message ***
author Noah Friedman <friedman@splode.com>
date Sun, 31 May 1992 21:09:48 +0000
parents 7cbd4fcd8b0f
children 47871343371e
comparison
equal deleted inserted replaced
666:7fa6b835da67 667:ded061ae23c8
342 (setq keyboard-translate-table table))) 342 (setq keyboard-translate-table table)))
343 (aset keyboard-translate-table from to)) 343 (aset keyboard-translate-table from to))
344 344
345 345
346 (defmacro lambda (&rest cdr) 346 (defmacro lambda (&rest cdr)
347 "Allows one to write (lambda ...) to write anonymous functions instead of
348 having to write (function (lambda ...)) or '(lambda ...), the latter of
349 which won't get byte-compiled."
347 (` (function (lambda (,@ cdr))))) 350 (` (function (lambda (,@ cdr)))))
348 351
349 ;;; subr.el ends here 352 ;;; subr.el ends here