]> git.eshelyaron.com Git - emacs.git/commitdiff
* Rename comp-async-env-modifier-form → native-comp-async-env-modifier-form
authorAndrea Corallo <akrl@sdf.org>
Thu, 6 May 2021 12:53:28 +0000 (14:53 +0200)
committerAndrea Corallo <akrl@sdf.org>
Thu, 6 May 2021 15:16:08 +0000 (17:16 +0200)
* 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.

lisp/emacs-lisp/comp.el

index 9756d1f58a0ae1bbe959efa0cc9ff7d333362ee2..24b65424a1860fa0de485268dc85d8e56b5a29c4 100644 (file)
@@ -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 :/