Variable: native-comp-async-query-on-exit

native-comp-async-query-on-exit is a customizable variable defined in comp.el.gz.

Value

nil

Documentation

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 exit Emacs, it will silently kill those asynchronous compilations even if confirm-kill-processes is non-nil.

This variable was added, or its default value changed, in Emacs 28.1.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(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
exit Emacs, it will silently kill those asynchronous compilations even
if `confirm-kill-processes' is non-nil."
  :type 'boolean
  :version "28.1")