From fb15c113b92a88d1b84a1fd8e4371528cbc59692 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 24 Dec 1994 16:41:31 +0000 Subject: [PATCH] (save-buffers-kill-emacs): Fix backward test of value of run-hook-with-args-until-failure. --- lisp/files.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/files.el b/lisp/files.el index 2fc86bdd430..f777aa2e4b2 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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) -- 2.39.5