From: Chong Yidong Date: Sat, 7 Apr 2007 04:33:00 +0000 (+0000) Subject: Fix last change. X-Git-Tag: emacs-pretest-22.0.98~235 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0ad32c540fe16ceabf2b1deab140c59fcde2e92c;p=emacs.git Fix last change. --- diff --git a/lisp/net/tls.el b/lisp/net/tls.el index ee093571dec..01a15139905 100644 --- a/lisp/net/tls.el +++ b/lisp/net/tls.el @@ -125,12 +125,17 @@ BUFFER is the buffer (or buffer-name) to associate with the process. with any buffer Third arg is name of the host to connect to, or its IP address. Fourth arg PORT is an integer specifying a port to connect to." - (let ((cmds tls-program) cmd done) + (let ((cmds tls-program) + (use-temp-buffer (null buffer)) + process cmd done) + (if use-temp-buffer + (setq buffer (generate-new-buffer " TLS"))) (message "Opening TLS connection to `%s'..." host) (while (and (not done) (setq cmd (pop cmds))) (message "Opening TLS connection with `%s'..." cmd) - (let* ((process-connection-type tls-process-connection-type) - (process (start-process + (let ((process-connection-type tls-process-connection-type) + response) + (setq process (start-process name buffer shell-file-name shell-command-switch (format-spec cmd @@ -139,10 +144,8 @@ Fourth arg PORT is an integer specifying a port to connect to." ?p (if (integerp port) (int-to-string port) port))))) - response) (while (and process (memq (process-status process) '(open run)) - buffer (save-excursion (set-buffer buffer) ;; XXX "blue moon" nntp.el bug (goto-char (point-min)) @@ -156,6 +159,9 @@ Fourth arg PORT is an integer specifying a port to connect to." (delete-process process)))) (message "Opening TLS connection to `%s'...%s" host (if done "done" "failed")) + (when use-temp-buffer + (or done (set-process-buffer process nil)) + (kill-buffer buffer)) done)) (provide 'tls)