]> git.eshelyaron.com Git - emacs.git/commit
Don't inline funcall to literal lambda form
authorMattias Engdegård <mattiase@acm.org>
Thu, 4 May 2023 15:28:08 +0000 (17:28 +0200)
committerMattias Engdegård <mattiase@acm.org>
Fri, 5 May 2023 20:00:27 +0000 (22:00 +0200)
commit1438574dd73a097293f8cfe356c3459cec6ee005
tree6e3ee44020a988bfdcb392a18f69fa985a140b87
parent0e8d8a72284f6b3aaa1bbce73d41c7d84bbc4d3c
Don't inline funcall to literal lambda form

* lisp/emacs-lisp/byte-opt.el (byte-optimize-funcall): Don't convert

  (funcall '(lambda ...) ...) -> ((lambda ...) ...)

because that would inline what is essentially an `eval` of a
function using dynamic binding rules into lexbound code.
lisp/emacs-lisp/byte-opt.el