summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/bytecomp.el
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-05-06 10:12:48 +0200
committerAndrea Corallo <akrl@sdf.org>2021-05-06 17:16:07 +0200
commit43f29696adc37ae75d87cd4b86d78e830e01e018 (patch)
treec89f999768b233314c40652bf210dc79a2a7e194 /lisp/emacs-lisp/bytecomp.el
parent643cc3fa144e94b33a7b8f1d4965cec7b383ed35 (diff)
downloademacs-43f29696adc37ae75d87cd4b86d78e830e01e018.tar.gz
emacs-43f29696adc37ae75d87cd4b86d78e830e01e018.tar.bz2
emacs-43f29696adc37ae75d87cd4b86d78e830e01e018.zip
Rename comp-speed -> native-comp-speed
* lisp/emacs-lisp/bytecomp.el (byte-compile-from-buffer): Rename comp-speed -> native-comp-speed. * lisp/emacs-lisp/comp.el (native-comp-speed, comp-ctxt, comp-func, comp-spill-lap-function, comp-trampoline-compile, comp-run-async-workers): Likewise. * src/comp.c (emit_ctxt_code, load_comp_unit, syms_of_comp): Likewise. * test/src/comp-tests.el (comp-tests-tco, comp-tests-fw-prop-1) (comp-tests-check-ret-type-spec, comp-tests-pure): Likewise.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index e93cee99249..2a07ea79f56 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -2238,8 +2238,8 @@ With argument ARG, insert value in current buffer after the form."
(setq byte-compile-noruntime-functions nil)
(setq byte-compile-new-defuns nil)
(when byte-native-compiling
- (defvar comp-speed)
- (push `(comp-speed . ,comp-speed) byte-native-qualities)
+ (defvar native-comp-speed)
+ (push `(native-comp-speed . ,native-comp-speed) byte-native-qualities)
(defvar comp-debug)
(push `(comp-debug . ,comp-debug) byte-native-qualities)
(defvar comp-native-driver-options)