diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-05-06 14:53:28 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-05-06 17:16:08 +0200 |
commit | 4e01605efab2ad8521ed9783d64862a6459ec91f (patch) | |
tree | 6dcb0823e0d534aba091e0d05a0f219331ac67a7 /lisp/emacs-lisp | |
parent | 4e063bf8eb47cb87891a71021be636a33492f706 (diff) | |
download | emacs-4e01605efab2ad8521ed9783d64862a6459ec91f.tar.gz emacs-4e01605efab2ad8521ed9783d64862a6459ec91f.tar.bz2 emacs-4e01605efab2ad8521ed9783d64862a6459ec91f.zip |
* Rename comp-async-env-modifier-form → native-comp-async-env-modifier-form
* lisp/emacs-lisp/comp.el (native-comp-async-env-modifier-form)
(comp-final, comp-run-async-workers): Rename
comp-async-env-modifier-form → native-comp-async-env-modifier-form.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 9756d1f58a0..24b65424a18 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -127,7 +127,7 @@ compilation." :type 'hook :version "28.1") -(defcustom comp-async-env-modifier-form nil +(defcustom native-comp-async-env-modifier-form nil "Form evaluated before compilation by each asynchronous compilation subprocess. Used to modify the compiler environment." :type 'sexp @@ -3657,7 +3657,7 @@ Prepare every function for final compilation and drive the C back-end." comp-native-driver-options ',comp-native-driver-options load-path ',load-path) - ,comp-async-env-modifier-form + ,native-comp-async-env-modifier-form (message "Compiling %s..." ',output) (comp-final1))) (temp-file (make-temp-file @@ -3915,7 +3915,7 @@ display a message." ',comp-native-driver-options load-path ',load-path warning-fill-column most-positive-fixnum) - ,comp-async-env-modifier-form + ,native-comp-async-env-modifier-form (message "Compiling %s..." ,source-file) (comp--native-compile ,source-file ,(and load t)))) (source-file1 source-file) ;; Make the closure works :/ |