1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

(save-buffers-kill-emacs): Fix backward test of value of

run-hook-with-args-until-failure.
This commit is contained in:
Richard M. Stallman 1994-12-24 16:41:31 +00:00
parent d82e848c34
commit fb15c113b9

View File

@ -2235,7 +2235,7 @@ With prefix arg, silently save all file-visiting buffers, then kill."
(or (not active)
(yes-or-no-p "Active processes exist; kill them and exit anyway? "))))
;; Query the user for other things, perhaps.
(not (run-hook-with-args-until-failure 'kill-emacs-query-functions))
(run-hook-with-args-until-failure 'kill-emacs-query-functions)
(kill-emacs)))
(define-key ctl-x-map "\C-f" 'find-file)