diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-05-06 14:49:31 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-05-06 17:16:08 +0200 |
commit | e73186a44644705ff50d2b819fd2eb213e713259 (patch) | |
tree | af246bb3c5fdb3607ef3623d494512b36ab015a1 /lisp/emacs-lisp/comp.el | |
parent | d8f84a1c00ebf3020e201587e182cc8e4bc4a170 (diff) | |
download | emacs-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/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 4 |
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)) |