aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGnus developers2012-01-07 01:13:52 +0000
committerKatsumi Yamaoka2012-01-07 01:13:52 +0000
commite7719ea1b23a7dc81993320f851c6e94d563dee4 (patch)
tree905450cd1f8faa119433078af081b6f965109662 /doc
parentadf4e762813e58cd7b68982d448269965bb45616 (diff)
downloademacs-e7719ea1b23a7dc81993320f851c6e94d563dee4.tar.gz
emacs-e7719ea1b23a7dc81993320f851c6e94d563dee4.zip
Merge changes made in Gnus trunk.
2012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org> * gnus.texi (Group Parameters): Really note precedence. 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org> * mm-decode.el (mm-interactively-view-part): Use `completing-read', since ido doesn't work on symbols (bug#9632). * gnus.el (gnus-group-fast-parameter): Use the same precedence rules when getting a single value as when getting all the values. This means that atoms like `gcc-self' work cumulatively, like variable settings, instead of getting the value from the last matching clause. (gnus-group-find-parameter): Protect against the group buffer not existing (bug#9585). 2012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org> * gnus-start.el (gnus-activate-group): Document more parameters (bug#9694). * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification (bug#9692). * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the article was fetched, so that it can be expired later (bug#9958). (gnus-agent-summary-fetch-series): Add doc string. (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks (bug#9517). * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async retrieval is happening. * gnus.el (gnus-parameters): Doc fix. 2012-01-06 Dave Abrahams <dave@boostpro.com> (tiny change) * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden, show the thread after expansion. 2012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org> * gnus-art.el (article-narrow-to-head): If the head is completely empty, narrow to the empty region (bug#9764). * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as read, and then mark them as unread only when the unread mark is used. This makes `C-- T k' actually work, even though it's confusing. * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is alive before we try to find its window. 2012-01-06 Brian Sniffen <bsniffen@akamai.com> (tiny change) * mm-decode.el (mm-display-external): Use a longer timeout for the deletion to allow slow programs to display the file. 2012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org> * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the prompt to be less confusing.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/gnus.texi7
2 files changed, 9 insertions, 2 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 1494665c700..adb5bbbd669 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12012-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * gnus.texi (Group Parameters): Really note precedence.
4
12012-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org> 52012-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 6
3 * gnus.texi (Group Parameters): Note precedence. 7 * gnus.texi (Group Parameters): Note precedence.
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index 82f424e090c..7728041c83b 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -3180,14 +3180,17 @@ For example:
3180 (to-group . "\\1")) 3180 (to-group . "\\1"))
3181 3181
3182 ("mail\\.me" 3182 ("mail\\.me"
3183 (gnus-use-scoring t)) 3183 (gnus-use-scoring t))
3184 3184
3185 ("list\\..*" 3185 ("list\\..*"
3186 (total-expire . t) 3186 (total-expire . t)
3187 (broken-reply-to . t)))) 3187 (broken-reply-to . t))))
3188@end lisp 3188@end lisp
3189 3189
3190The first clause that matches the group name will be used. 3190All clauses that matches the group name will be used, but the last
3191setting ``wins''. So if you have two clauses that both match the
3192group name, and both set, say @code{display}, the last setting will
3193override the first.
3191 3194
3192Parameters that are strings will be subjected to regexp substitution, 3195Parameters that are strings will be subjected to regexp substitution,
3193as the @code{to-group} example shows. 3196as the @code{to-group} example shows.