diff options
| author | Richard M. Stallman | 1994-12-24 16:41:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-12-24 16:41:31 +0000 |
| commit | fb15c113b92a88d1b84a1fd8e4371528cbc59692 (patch) | |
| tree | afdf15f78b4bc9d1e8cac4b9ba0fa0193e658743 | |
| parent | d82e848c3416fe0b8cc5c839104ff0188f7e5266 (diff) | |
| download | emacs-fb15c113b92a88d1b84a1fd8e4371528cbc59692.tar.gz emacs-fb15c113b92a88d1b84a1fd8e4371528cbc59692.zip | |
(save-buffers-kill-emacs): Fix backward test of value of
run-hook-with-args-until-failure.
| -rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 2235 | (or (not active) | 2235 | (or (not active) |
| 2236 | (yes-or-no-p "Active processes exist; kill them and exit anyway? ")))) | 2236 | (yes-or-no-p "Active processes exist; kill them and exit anyway? ")))) |
| 2237 | ;; Query the user for other things, perhaps. | 2237 | ;; Query the user for other things, perhaps. |
| 2238 | (not (run-hook-with-args-until-failure 'kill-emacs-query-functions)) | 2238 | (run-hook-with-args-until-failure 'kill-emacs-query-functions) |
| 2239 | (kill-emacs))) | 2239 | (kill-emacs))) |
| 2240 | 2240 | ||
| 2241 | (define-key ctl-x-map "\C-f" 'find-file) | 2241 | (define-key ctl-x-map "\C-f" 'find-file) |