diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-10-15 09:18:54 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-10-15 09:18:54 +0200 |
commit | 1af45ad04ef1755ada0483957018889dcf0f9207 (patch) | |
tree | fe88e854ddf0889be336a58b201197e59b355062 /lisp/emacs-lisp | |
parent | 12654b74236b914f571f173689b0ac87247d0f24 (diff) | |
download | emacs-1af45ad04ef1755ada0483957018889dcf0f9207.tar.gz emacs-1af45ad04ef1755ada0483957018889dcf0f9207.tar.bz2 emacs-1af45ad04ef1755ada0483957018889dcf0f9207.zip |
; * lisp/emacs-lisp/comp.el (comp-trampoline-compile): Fix comment.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |