From: Andrea Corallo Date: Fri, 15 Oct 2021 07:18:54 +0000 (+0200) Subject: ; * lisp/emacs-lisp/comp.el (comp-trampoline-compile): Fix comment. X-Git-Tag: emacs-28.0.90~286 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1af45ad04ef1755ada0483957018889dcf0f9207;p=emacs.git ; * lisp/emacs-lisp/comp.el (comp-trampoline-compile): Fix comment. --- diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 0052fd0f8db..0e4e54b76bb 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -3781,8 +3781,8 @@ Return the trampoline if found or nil otherwise." for arg in lambda-list unless (memq arg '(&optional &rest)) collect arg))))) - ;; Use speed 0 to maximize compilation speed and not to - ;; optimize away funcall calls! + ;; Use speed 1 for compilation speed and not to optimize away + ;; funcall calls! (byte-optimize nil) (native-comp-speed 1) (lexical-binding t))