From 48a4a1fbe06860d88399e1d37bf69ef147537b35 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 17 Mar 2002 20:30:19 +0000 Subject: [PATCH] (save-buffers-kill-emacs): Also check for active server processes. Use process-query-on-exit-flag. Only list processes which has the query-on-exit flag set in connection with user query. --- lisp/files.el | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lisp/files.el b/lisp/files.el index ef44e44d84a..715fbb70e6f 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1,6 +1,6 @@ ;;; files.el --- file input and output commands for Emacs -;; Copyright (C) 1985, 86, 87, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001 +;; Copyright (C) 1985, 86, 87, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001, 2002 ;;; Free Software Foundation, Inc. ;; Maintainer: FSF @@ -3827,14 +3827,12 @@ With prefix arg, silently save all file-visiting buffers, then kill." (let ((processes (process-list)) active) (while processes - (and (memq (process-status (car processes)) '(run stop open)) - (let ((val (process-kill-without-query (car processes)))) - (process-kill-without-query (car processes) val) - val) + (and (memq (process-status (car processes)) '(run stop open listen)) + (process-query-on-exit-flag (car processes)) (setq active t)) (setq processes (cdr processes))) (or (not active) - (list-processes) + (list-processes t) (yes-or-no-p "Active processes exist; kill them and exit anyway? ")))) ;; Query the user for other things, perhaps. (run-hook-with-args-until-failure 'kill-emacs-query-functions) -- 2.39.2