diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-04-07 04:40:28 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-04-07 04:40:28 +0000 |
commit | 58b2d3ca757e5b4e24db93a6e84e834bdea09abb (patch) | |
tree | 9c627821621e2e12708854eb7a8d524ebedd2f28 /lisp/net | |
parent | aeceafcd7b6565039d644427e77a420610dc4433 (diff) | |
download | emacs-58b2d3ca757e5b4e24db93a6e84e834bdea09abb.tar.gz |
Fix last fix.
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/tls.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tls.el b/lisp/net/tls.el index 01a15139905..cdbb7bef5a7 100644 --- a/lisp/net/tls.el +++ b/lisp/net/tls.el @@ -160,7 +160,7 @@ Fourth arg PORT is an integer specifying a port to connect to." (message "Opening TLS connection to `%s'...%s" host (if done "done" "failed")) (when use-temp-buffer - (or done (set-process-buffer process nil)) + (if done (set-process-buffer process nil)) (kill-buffer buffer)) done)) |