* 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.
: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."
: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))