diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2012-03-04 00:15:34 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-03-04 00:15:34 +0000 |
commit | a1e7225c983f616ed6b43c9861b9c1374bbab2bb (patch) | |
tree | ee7b615df7f8092295764c079996fcf4d534997d /lisp/net/tls.el | |
parent | 7d2d7cc06546f8382f95dbc83909aa8cebf3828f (diff) | |
download | emacs-a1e7225c983f616ed6b43c9861b9c1374bbab2bb.tar.gz emacs-a1e7225c983f616ed6b43c9861b9c1374bbab2bb.tar.bz2 emacs-a1e7225c983f616ed6b43c9861b9c1374bbab2bb.zip |
net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
Diffstat (limited to 'lisp/net/tls.el')
-rw-r--r-- | lisp/net/tls.el | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/net/tls.el b/lisp/net/tls.el index 9b9eb6f8f2e..d232095444b 100644 --- a/lisp/net/tls.el +++ b/lisp/net/tls.el @@ -237,10 +237,6 @@ Fourth arg PORT is an integer specifying a port to connect to." (setq process (start-process name buffer shell-file-name shell-command-switch formatted-cmd)) - (funcall (if (fboundp 'set-process-query-on-exit-flag) - 'set-process-query-on-exit-flag - 'process-kill-without-query) - process nil) (while (and process (memq (process-status process) '(open run)) (progn |