Mercurial > emacs
changeset 43970:5966dbd88eb3
(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.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Sun, 17 Mar 2002 20:30:19 +0000 |
parents | 927028937c0b |
children | 92d4c0ba3ff9 |
files | lisp/files.el |
diffstat | 1 files changed, 4 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/files.el Sun Mar 17 20:28:53 2002 +0000 +++ b/lisp/files.el Sun Mar 17 20:30:19 2002 +0000 @@ -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 @@ (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)