diff options
Diffstat (limited to 'lisp/gnus')
-rw-r--r-- | lisp/gnus/ChangeLog | 11 | ||||
-rw-r--r-- | lisp/gnus/gnus-agent.el | 2 | ||||
-rw-r--r-- | lisp/gnus/gnus-group.el | 7 | ||||
-rw-r--r-- | lisp/gnus/gnus-msg.el | 2 | ||||
-rw-r--r-- | lisp/gnus/gnus-sum.el | 4 |
5 files changed, 21 insertions, 5 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index b1fcb5429d6..501ff5b59d0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -8,12 +8,23 @@ 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org> + * gnus-group.el (gnus-group-list-limit): Explain what the command + does. + + * gnus-sum.el (gnus-fetch-headers): Bump message level. + +2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org> + * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing duplicates" to a higher level. * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the most egregious messages. +2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org> + + * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix. + 2011-09-10 Tetsuo Tsukamoto <tt.tetsuo.tsukamoto@gmail.com> (tiny change) * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking diff --git a/lisp/gnus/gnus-agent.el b/lisp/gnus/gnus-agent.el index 26222119b98..669f9675536 100644 --- a/lisp/gnus/gnus-agent.el +++ b/lisp/gnus/gnus-agent.el @@ -1933,7 +1933,7 @@ article numbers will be returned." (with-current-buffer nntp-server-buffer (if articles (progn - (gnus-message 7 "Fetching headers for %s..." + (gnus-message 8 "Fetching headers for %s..." (gnus-agent-decoded-group-name group)) ;; Fetch them. diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index 36fb9e8343b..f6cf7248a27 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el @@ -4636,7 +4636,12 @@ This command may read the active file." (gnus-group-list-plus args))) (defun gnus-group-list-limit (&optional args) - "List groups limited within the current selection." + "List groups limited within the current selection. +If you've limited the groups, you can further limit the selection +with this command. If you've first limited to groups with +dormant articles with `A ?', you can then further limit with +`A / c', which will then limit to groups with cached articles, giving +you the groups that have both dormant articles and cached articles." (interactive "P") (let ((gnus-group-list-option 'limit)) (gnus-group-list-plus args))) diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index d60c7165abd..e6a06a0500d 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -1225,7 +1225,7 @@ if ARG is 3, decode message and forward as an rfc822 MIME section; if ARG is 4, forward message directly inline; otherwise, use flipped `message-forward-as-mime'. If POST, post instead of mail. -For the `inline' alternatives, also see the variable +For the \"inline\" alternatives, also see the variable `message-forward-ignored-headers'." (interactive "P") (if (cdr (gnus-summary-work-articles nil)) diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 7e63237c676..8651b583757 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -5543,7 +5543,7 @@ or a straight list of headers." (defun gnus-fetch-headers (articles &optional limit force-new dependencies) "Fetch headers of ARTICLES." (let ((name (gnus-group-decoded-name gnus-newsgroup-name))) - (gnus-message 5 "Fetching headers for %s..." name) + (gnus-message 7 "Fetching headers for %s..." name) (prog1 (if (eq 'nov (setq gnus-headers-retrieved-by @@ -5560,7 +5560,7 @@ or a straight list of headers." (gnus-get-newsgroup-headers-xover articles force-new dependencies gnus-newsgroup-name t) (gnus-get-newsgroup-headers dependencies force-new)) - (gnus-message 5 "Fetching headers for %s...done" name)))) + (gnus-message 7 "Fetching headers for %s...done" name)))) (defun gnus-select-newsgroup (group &optional read-all select-articles) "Select newsgroup GROUP. |