mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-18 10:57:34 +00:00
gnus-agent.el (gnus-agentize): Only do the auto-agentizing if gnus-agent-auto-agentize-methods is set. Which it isn't.
This commit is contained in:
parent
cca982d001
commit
90eef04725
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2010-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
|
||||
gnus-agent-auto-agentize-methods is set. Which it isn't.
|
||||
|
||||
2010-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
|
||||
|
|
|
|||
|
|
@ -695,7 +695,9 @@ minor mode in all Gnus buffers."
|
|||
;; If the servers file doesn't exist, auto-agentize some servers and
|
||||
;; save the servers file so this auto-agentizing isn't invoked
|
||||
;; again.
|
||||
(unless (file-exists-p (nnheader-concat gnus-agent-directory "lib/servers"))
|
||||
(when (and (not (file-exists-p (nnheader-concat
|
||||
gnus-agent-directory "lib/servers")))
|
||||
gnus-agent-auto-agentize-methods)
|
||||
(gnus-message 3 "First time agent user, agentizing remote groups...")
|
||||
(mapc
|
||||
(lambda (server-or-method)
|
||||
|
|
|
|||
Loading…
Reference in a new issue