diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-01-15 14:08:41 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-01-15 14:09:11 -0800 |
commit | 2a3bd6798e9670828f0402079fcc116d6d6b042d (patch) | |
tree | faed45fcd905138435b9100758f5bcc44e60ec3a /lisp/obsolete | |
parent | 9fc02ff5ea95c31a8d81eabb5634aa135fcd8786 (diff) | |
download | emacs-2a3bd6798e9670828f0402079fcc116d6d6b042d.tar.gz emacs-2a3bd6798e9670828f0402079fcc116d6d6b042d.tar.bz2 emacs-2a3bd6798e9670828f0402079fcc116d6d6b042d.zip |
Avoid using obsolete accept-process-output arg
* lisp/gnus/nnheader.el (nnheader-accept-process-output):
* lisp/net/dns.el (dns-query):
* lisp/net/imap.el (imap-wait-for-tag):
* lisp/net/network-stream.el (network-stream-get-response):
* lisp/net/pop3.el (pop3-accept-process-output):
* lisp/obsolete/starttls.el (starttls-negotiate-gnutls)
(starttls-open-stream-gnutls):
* lisp/server.el (server-eval-at):
* lisp/textmodes/ispell.el (ispell-accept-output):
Do not depend on the obsolete milliseconds argument of
accept-process-output.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r-- | lisp/obsolete/starttls.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/obsolete/starttls.el b/lisp/obsolete/starttls.el index b89e612e4a3..e0a09688f45 100644 --- a/lisp/obsolete/starttls.el +++ b/lisp/obsolete/starttls.el @@ -217,7 +217,7 @@ handshake, or nil on failure." starttls-success nil t)) (setq done-bad (re-search-forward starttls-failure nil t)))))) - (accept-process-output process 1 100) + (accept-process-output process 1.1) (sit-for 0.1)) (setq info (buffer-substring-no-properties old-max (point-max))) (delete-region old-max (point-max)) @@ -251,7 +251,7 @@ handshake, or nil on failure." (goto-char old-max) (not (setq done (re-search-forward starttls-connect nil t))))) - (accept-process-output process 0 100) + (accept-process-output process 0.1) (sit-for 0.1)) (if done (with-current-buffer buffer |