diff options
| author | Philipp Stephani | 2016-09-27 20:47:23 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2016-10-01 14:25:27 +0200 |
| commit | b661efd90d9bd57430761b0e87fcc8723ec24814 (patch) | |
| tree | 2808dd470064a2ac929dd28804359886a650f9ad /etc | |
| parent | e1c5422e7bc2fbe0ecf5ab501b39d32fac61e747 (diff) | |
| download | emacs-b661efd90d9bd57430761b0e87fcc8723ec24814.tar.gz emacs-b661efd90d9bd57430761b0e87fcc8723ec24814.zip | |
Make querying to kill processes customizable
Introduce a new customization option, `confirm-kill-processes', that
users can set to nil if they don't want Emacs to nag them about killing
processes.
* lisp/files.el (confirm-kill-processes): New customization option.
(save-buffers-kill-emacs): Use customization option.
* test/lisp/files-tests.el
(files-test--save-buffers-kill-emacs--confirm-kill-processes): Add
test for new customization option.
* doc/emacs/entering.texi (Exiting): Document new user option.
* doc/lispref/processes.texi (Query Before Exit): Document new
user option.
* etc/NEWS: Document new user option.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
| @@ -82,6 +82,13 @@ of a parenthetical grouping or string-delimiter: the default value nil | |||
| 82 | keeps point at the end of the region, setting it to non-nil moves | 82 | keeps point at the end of the region, setting it to non-nil moves |
| 83 | point to the beginning of the region. | 83 | point to the beginning of the region. |
| 84 | 84 | ||
| 85 | +++ | ||
| 86 | ** The new user option 'confirm-kill-processes' allows the user to | ||
| 87 | skip a confirmation prompt for killing subprocesses when exiting | ||
| 88 | Emacs. When set to t (the default), Emacs will prompt for | ||
| 89 | confirmation before killing subprocesses on exit, which is the same | ||
| 90 | behavior as before. | ||
| 91 | |||
| 85 | --- | 92 | --- |
| 86 | ** 'find-library-name' will now fall back on looking at 'load-history' | 93 | ** 'find-library-name' will now fall back on looking at 'load-history' |
| 87 | to try to locate libraries that have been loaded with an explicit path | 94 | to try to locate libraries that have been loaded with an explicit path |