]> git.eshelyaron.com Git - emacs.git/commitdiff
(eudc-ph-open-session): Use set-process-query-on-exit-flag.
authorRichard M. Stallman <rms@gnu.org>
Wed, 16 Nov 2005 22:23:28 +0000 (22:23 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 16 Nov 2005 22:23:28 +0000 (22:23 +0000)
lisp/net/eudcb-ph.el

index 3aea6030257b51392f3d18ef09b4e113ae16a876..30a8efbbae3e300aa237477ead3e146b57af9182 100644 (file)
@@ -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)