summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-05-06 14:49:31 +0200
committerAndrea Corallo <akrl@sdf.org>2021-05-06 17:16:08 +0200
commite73186a44644705ff50d2b819fd2eb213e713259 (patch)
treeaf246bb3c5fdb3607ef3623d494512b36ab015a1 /lisp/emacs-lisp
parentd8f84a1c00ebf3020e201587e182cc8e4bc4a170 (diff)
downloademacs-e73186a44644705ff50d2b819fd2eb213e713259.tar.gz
emacs-e73186a44644705ff50d2b819fd2eb213e713259.tar.bz2
emacs-e73186a44644705ff50d2b819fd2eb213e713259.zip
* Rename comp-async-cu-done-functions → native-comp-async-cu-done-functions
* lisp/emacs-lisp/comp.el (native-comp-async-cu-done-functions) (comp-run-async-workers): Rename comp-async-cu-done-functions → native-comp-async-cu-done-functions.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/comp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 54c51c6e34b..93541fa6d8f 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -115,7 +115,7 @@ or one if there's just one execution unit."
:risky t
:version "28.1")
-(defcustom comp-async-cu-done-functions nil
+(defcustom native-comp-async-cu-done-functions nil
"List of functions to call after asynchronously compiling one compilation unit.
Called with one argument FILE, the filename used as input to
compilation."
@@ -3940,7 +3940,7 @@ display a message."
:sentinel
(lambda (process _event)
(run-hook-with-args
- 'comp-async-cu-done-functions
+ 'native-comp-async-cu-done-functions
source-file)
(comp-accept-and-process-async-output process)
(ignore-errors (delete-file temp-file))