diff options
Diffstat (limited to 'lisp/net/eudcb-ph.el')
-rw-r--r-- | lisp/net/eudcb-ph.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eudcb-ph.el b/lisp/net/eudcb-ph.el index 3aea6030257..30a8efbbae3 100644 --- a/lisp/net/eudcb-ph.el +++ b/lisp/net/eudcb-ph.el @@ -184,7 +184,7 @@ SERVER is either a string naming the server or a list (NAME PORT)." (setq process (open-network-stream "ph" eudc-ph-process-buffer host port)) (if (null process) (throw 'done nil)) - (process-kill-without-query process) + (set-process-query-on-exit-flag process t) process))) (defun eudc-ph-close-session (process) |