From: Chong Yidong Date: Wed, 21 Jan 2009 20:33:17 +0000 (+0000) Subject: (server-start): Allow server to shut down when no frames are available X-Git-Tag: emacs-pretest-23.0.90~339 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=97e121ccb058d3f0b7dc8f397fb2e4dc94264e89;p=emacs.git (server-start): Allow server to shut down when no frames are available in daemon-mode. --- diff --git a/lisp/server.el b/lisp/server.el index 910c0047dce..20b9ff57ffe 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -465,10 +465,16 @@ If a server is already running, the server is not started. To force-start a server, do \\[server-force-delete] and then \\[server-start]." (interactive "P") - (when (or - (not server-clients) - (yes-or-no-p - "The current server still has clients; delete them? ")) + (when (or (not server-clients) + ;; Ask the user before deleting existing clients---except + ;; when we can't get user input, which may happen when + ;; doing emacsclient --eval "(kill-emacs)" in daemon mode. + (if (and (daemonp) + (null (cdr (frame-list))) + (eq (selected-frame) terminal-frame)) + leave-dead + (yes-or-no-p + "The current server still has clients; delete them? "))) (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir)) (server-file (expand-file-name server-name server-dir))) (when server-process @@ -979,7 +985,7 @@ The following commands are accepted by the client: ;; We can't use the Emacs daemon's ;; terminal frame. (not (and (daemonp) - (= (length (frame-list)) 1) + (null (cdr (frame-list))) (eq (selected-frame) terminal-frame))))) (setq tty-name nil tty-type nil)