# HG changeset patch # User Richard M. Stallman # Date 788287291 0 # Node ID 013842475608c3ed9ab5f4b3852ee5d889549c37 # Parent ff7189e5e459b6b3c883287d16916c9c06a4307b (save-buffers-kill-emacs): Fix backward test of value of run-hook-with-args-until-failure. diff -r ff7189e5e459 -r 013842475608 lisp/files.el --- 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)