branch: externals/elisp-benchmarks commit a35757079fb9ba64fe7d3aa796738cc472ab7d8f Author: Andrea Corallo <a...@sdf.org> Commit: Andrea Corallo <a...@sdf.org>
* elisp-benchmarks.el (elisp-benchmarks-run): Use featurep to detect nativecomp --- elisp-benchmarks.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elisp-benchmarks.el b/elisp-benchmarks.el index 326ff73..ea08db3 100644 --- a/elisp-benchmarks.el +++ b/elisp-benchmarks.el @@ -85,7 +85,7 @@ RECOMPILE all the benchmark folder when non nil." repeat runs for i from 1 named test-loop - with native-comp = (boundp 'comp-ctxt) ; FIXME when possible + with native-comp = (featurep 'nativecomp) with compile-function = (if native-comp #'native-compile #'byte-compile-file)