diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-02-11 21:37:53 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-02-11 21:37:53 +0100 |
commit | d3a399dd299bf7e811cf42950d5f8ac67f063b36 (patch) | |
tree | 7da4ace8d159e42bf60b35c6171cc9b871bbbf88 /lisp/emacs-lisp | |
parent | 4fba79feee58e074d112bb47467913f9aec089c7 (diff) | |
download | emacs-d3a399dd299bf7e811cf42950d5f8ac67f063b36.tar.gz emacs-d3a399dd299bf7e811cf42950d5f8ac67f063b36.tar.bz2 emacs-d3a399dd299bf7e811cf42950d5f8ac67f063b36.zip |
* lisp/emacs-lisp/comp.el (comp-trampoline-compile): Default to speed 1.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 02a9f4ae1ff..40360809765 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -3661,7 +3661,7 @@ Return the trampoline if found or nil otherwise." ;; Use speed 0 to maximize compilation speed and not to ;; optimize away funcall calls! (byte-optimize nil) - (comp-speed 0) + (comp-speed 1) (lexical-binding t)) (comp--native-compile form nil |