]> code.delx.au - gnu-emacs/commitdiff
(save-buffers-kill-emacs): Fix backward test of value of
authorRichard M. Stallman <rms@gnu.org>
Sat, 24 Dec 1994 16:41:31 +0000 (16:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 24 Dec 1994 16:41:31 +0000 (16:41 +0000)
run-hook-with-args-until-failure.

lisp/files.el

index 2fc86bdd430f7abed3a7fe31dc7333f001a7d60c..f777aa2e4b2f6099775f2b2aa47c636b728dc84d 100644 (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)))
 \f
 (define-key ctl-x-map "\C-f" 'find-file)