diff options
author | Ulrich Mueller <ulm@gentoo.org> | 2010-11-16 15:09:47 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-11-16 15:09:47 -0500 |
commit | bf6442c3451483de277d1b76832854ad4022963d (patch) | |
tree | 13a8d3ca3235c7dfd4c97819230431b187af9939 /lisp/server.el | |
parent | 37de8fd0e492920b8f3771177a84bb6ec403d374 (diff) | |
download | emacs-bf6442c3451483de277d1b76832854ad4022963d.tar.gz |
* lisp/server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
Diffstat (limited to 'lisp/server.el')
-rw-r--r-- | lisp/server.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/server.el b/lisp/server.el index 17d6743a0f7..6297cc82ab0 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -594,7 +594,7 @@ server or call `M-x server-force-delete' to forcibly disconnect it.") (defun server-force-stop () "Kill all connections to the current server. This function is meant to be called from `kill-emacs-hook'." - (server-start nil t)) + (server-start t t)) ;;;###autoload (defun server-force-delete (&optional name) |