summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-11-16 22:23:28 +0000
committerRichard M. Stallman <rms@gnu.org>2005-11-16 22:23:28 +0000
commit4e46799eac78d61dadb34142fe51d5f8cc65bc1b (patch)
tree28b85e2db1cf5d4e0fb6537b7b3bdac4eaad171e /lisp
parent63fcfa450f224300fc829c8acef36932c3d1b1e1 (diff)
downloademacs-4e46799eac78d61dadb34142fe51d5f8cc65bc1b.tar.gz
(eudc-ph-open-session): Use set-process-query-on-exit-flag.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/net/eudcb-ph.el2
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)