emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Lambda in macrolet becomes a closure? (another breaking change in em


From: Constantin Kulikov
Subject: Re: Lambda in macrolet becomes a closure? (another breaking change in emacs:))
Date: Tue, 27 Sep 2016 12:19:58 +0300

Heh, just found the place where the `with-no-warnings' seem to work for me:

(let* ((fu #'(lambda (a) (+ a 1)))
               ba)
          (message "%s" `,fu)
          (let (byte-compile-warnings)
            (setq ba (byte-compile `(lambda (b) (funcall (with-no-warnings (quote ,fu)) b)))))
         (funcall ba 2))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]