Variable: confirm-kill-processes

confirm-kill-processes is a customizable variable defined in files.el.gz.

Value

t

Documentation

Non-nil if Emacs should confirm killing processes on exit.

If this variable is nil, the value of process-query-on-exit-flag is ignored. Otherwise, if there are processes with a non-nil process-query-on-exit-flag, Emacs will prompt the user before killing them.

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

View in manual

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defcustom confirm-kill-processes t
  "Non-nil if Emacs should confirm killing processes on exit.
If this variable is nil, the value of
`process-query-on-exit-flag' is ignored.  Otherwise, if there are
processes with a non-nil `process-query-on-exit-flag', Emacs will
prompt the user before killing them."
  :type 'boolean
  :group 'convenience
  :version "26.1")