diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-05-06 14:55:30 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-05-06 17:16:08 +0200 |
commit | 419852a599ceac1d80eb578a9a6df707fc6f6c8e (patch) | |
tree | 90c079126e52a2e0dfee472503f4395795a6e6a1 /lisp/emacs-lisp | |
parent | c90129c5e5404d12b538aa3b69c7af4b89a728cd (diff) | |
download | emacs-419852a599ceac1d80eb578a9a6df707fc6f6c8e.tar.gz emacs-419852a599ceac1d80eb578a9a6df707fc6f6c8e.tar.bz2 emacs-419852a599ceac1d80eb578a9a6df707fc6f6c8e.zip |
* Rename comp-async-query-on-exit → native-comp-async-query-on-exit
* lisp/emacs-lisp/comp.el (native-comp-async-query-on-exit)
(comp-run-async-workers): Rename comp-async-query-on-exit →
native-comp-async-query-on-exit.
Diffstat (limited to 'lisp/emacs-lisp')
-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 908a71846ae..8a1f26be1fb 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -152,7 +152,7 @@ Set this variable to nil if these warnings annoy you." :type 'boolean :version "28.1") -(defcustom comp-async-query-on-exit nil +(defcustom native-comp-async-query-on-exit nil "Whether to query the user about killing async compilations when exiting. If this is non-nil, Emacs will ask for confirmation to exit and kill the asynchronous native compilations if any are running. If nil, when you @@ -3953,7 +3953,7 @@ display a message." (native-elisp-load eln-file (eq load1 'late)))) (comp-run-async-workers)) - :noquery (not comp-async-query-on-exit)))) + :noquery (not native-comp-async-query-on-exit)))) (puthash source-file process comp-async-compilations)) when (>= (comp-async-runnings) (comp-effective-async-max-jobs)) do (cl-return))) |