[gnus git] branch master updated: m0-7-167-gdb8f931 =1= Allow nnrss to display images
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via db8f931b91eec8c0af89fd51e46c74624869de16 (commit)
from 3b1cc6277adfb842733aaff1f93bd612dea0a8f7 (commit)
- Log -----------------------------------------------------------------
commit db8f931b91eec8c0af89fd51e46c74624869de16
Author: Lars Ingebrigtsen <[email protected]>
Date: Sat Jul 6 20:42:51 2013 +0200
Allow nnrss to display images
* gnus-art.el (gnus-block-private-groups): Allow `global' methods to
display images.
* gnus.el (gnus-valid-select-methods): Mark nnrss as global.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9885bd1..5859e4b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
2013-07-06 Lars Ingebrigtsen <[email protected]>
+ * gnus-art.el (gnus-block-private-groups): Allow `global' methods to
+ display images.
+
+ * gnus.el (gnus-valid-select-methods): Mark nnrss as global.
+
* message.el (message-cancel-news): According to
<[email protected]>, "cancel" is
preferred over "cmsg cancel" in the Subject.
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index f640000..a8ee480 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -6948,7 +6948,8 @@ If given a prefix, show the hidden text instead."
(set-buffer buf))))))
(defun gnus-block-private-groups (group)
- (if (gnus-news-group-p group)
+ (if (or (gnus-news-group-p group)
+ (gnus-member-of-valid 'global group))
;; Block nothing in news groups.
nil
;; Block everything anywhere else.
diff --git a/lisp/gnus.el b/lisp/gnus.el
index 12d412a..492a342 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -1628,7 +1628,7 @@ slower."
("nnfolder" mail respool address)
("nngateway" post-mail address prompt-address physical-address)
("nnweb" none)
- ("nnrss" none)
+ ("nnrss" none global)
("nnagent" post-mail)
("nnimap" post-mail address prompt-address physical-address respool
server-marks)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/gnus-art.el | 3 ++-
lisp/gnus.el | 2 +-
3 files changed, 8 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project