]> git.eshelyaron.com Git - emacs.git/commitdiff
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)
* 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

index 0f7a3cb26655af324033c8872eb23e9c0f6e0900..d859706c180f270e120489701c3bdc7ad564fcc0 100644 (file)
@@ -1420,10 +1420,13 @@ See Info node `(elisp) Integer Basics'."
 
 
 (defun byte-optimize-funcall (form)
-  ;; (funcall (lambda ...) ...) ==> ((lambda ...) ...)
-  ;; (funcall foo ...) ==> (foo ...)
-  (let ((fn (nth 1 form)))
-    (if (memq (car-safe fn) '(quote function))
+  ;; (funcall #'(lambda ...) ...) -> ((lambda ...) ...)
+  ;; (funcall #'SYM ...) -> (SYM ...)
+  ;; (funcall 'SYM ...)  -> (SYM ...)
+  (let* ((fn (nth 1 form))
+         (head (car-safe fn)))
+    (if (or (eq head 'function)
+            (and (eq head 'quote) (symbolp (nth 1 fn))))
        (cons (nth 1 fn) (cdr (cdr form)))
       form)))