diff lisp/files.el @ 10236:013842475608

(save-buffers-kill-emacs): Fix backward test of value of run-hook-with-args-until-failure.
author Richard M. Stallman <rms@gnu.org>
date Sat, 24 Dec 1994 16:41:31 +0000
parents 04425b872c5b
children 4b66ac3460df
line wrap: on
line diff
--- a/lisp/files.el	Sat Dec 24 05:58:05 1994 +0000
+++ b/lisp/files.el	Sat Dec 24 16:41:31 1994 +0000
@@ -2235,7 +2235,7 @@
 	     (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)