From: Richard M. Stallman Date: Sat, 24 Dec 1994 16:41:31 +0000 (+0000) Subject: (save-buffers-kill-emacs): Fix backward test of value of X-Git-Tag: emacs-19.34~5620 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fb15c113b92a88d1b84a1fd8e4371528cbc59692;p=emacs.git (save-buffers-kill-emacs): Fix backward test of value of run-hook-with-args-until-failure. --- 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)