diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-13 17:40:34 +1100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-13 17:40:34 +1100 |
commit | 9efc29a2dfda67c2e6b6693a6cb06a19fbdccaeb (patch) | |
tree | 2ee4a813f66d95e3bd6d960229c9f26c4fbbd199 /lisp/gnus/nntp.el | |
parent | 9bcefcf0b0bcb860f432299c8e6cf109d07ee8ef (diff) | |
download | emacs-9efc29a2dfda67c2e6b6693a6cb06a19fbdccaeb.tar.gz |
Remove several gnus-util compat functions
* lisp/gnus/gnus-util.el (gnus-set-process-query-on-exit-flag): Remove.
(gnus-read-shell-command): Remove.
(gnus-match-substitute-replacement): Remove.
(gnus-string-match-p): Remove.
(gnus-string-prefix-p): Remove.
Diffstat (limited to 'lisp/gnus/nntp.el')
-rw-r--r-- | lisp/gnus/nntp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index 6108b5a7768..e6483c2046a 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -1302,7 +1302,7 @@ If SEND-IF-FORCE, only send authinfo to the server if the ;; Use TCP-keepalive so that connections that pass through a NAT router ;; don't hang when left idle. (set-network-process-option process :keepalive t)) - (gnus-set-process-query-on-exit-flag process nil) + (set-process-query-on-exit-flag process nil) (if (and (nntp-wait-for process "^2.*\n" buffer nil t) (memq (process-status process) '(open run))) (prog1 |