diff options
| author | Gnus developers | 2012-06-10 23:27:32 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2012-06-10 23:27:32 +0000 |
| commit | cef5bb19dce668ccd99c9ce74b17c717e2c986b9 (patch) | |
| tree | 05a68f190b431e9ba39152311bbb87fa2b4f8555 | |
| parent | f80efb8695cd8b4480c5f041c484beb5486afb37 (diff) | |
| download | emacs-cef5bb19dce668ccd99c9ce74b17c717e2c986b9.tar.gz emacs-cef5bb19dce668ccd99c9ce74b17c717e2c986b9.zip | |
Merge bugfixes done in Gnus trunk
Those changes fix only the bugs having appeared in the bug list.
Many other Gnus changes not yet merged to Emacs are in:
ftp://ftp.jpl.org/pub/tmp/MaGnus-to-Emacs.patch
(or http://www.jpl.org/ftp/pub/tmp/MaGnus-to-Emacs.patch)
2012-06-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-group.el (gnus-group-get-new-news): Respect
`gnus-group-use-permanent-levels', as documented (bug#11638).
2012-06-10 Dave Abrahams <dave@boostpro.com>
* gnus-int.el (gnus-warp-to-article): Limit registry warping to real
groups (bug#11641).
| -rw-r--r-- | lisp/gnus/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/gnus/gnus-group.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus-int.el | 11 |
3 files changed, 17 insertions, 6 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index df3fa715751..aefb2a61683 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2012-06-10 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * gnus-group.el (gnus-group-get-new-news): Respect | ||
| 4 | `gnus-group-use-permanent-levels', as documented (bug#11638). | ||
| 5 | |||
| 6 | 2012-06-10 Dave Abrahams <dave@boostpro.com> | ||
| 7 | |||
| 8 | * gnus-int.el (gnus-warp-to-article): Limit registry warping to real | ||
| 9 | groups (bug#11641). | ||
| 10 | |||
| 1 | 2012-06-07 Lars Magne Ingebrigtsen <larsi@gnus.org> | 11 | 2012-06-07 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 12 | ||
| 3 | * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running | 13 | * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running |
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index f97d9a69eae..ff41f13de30 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el | |||
| @@ -4032,7 +4032,7 @@ re-scanning. If ARG is non-nil and not a number, this will force | |||
| 4032 | (unless gnus-slave | 4032 | (unless gnus-slave |
| 4033 | (gnus-master-read-slave-newsrc)) | 4033 | (gnus-master-read-slave-newsrc)) |
| 4034 | 4034 | ||
| 4035 | (gnus-get-unread-articles arg) | 4035 | (gnus-get-unread-articles (gnus-group-default-level arg t)) |
| 4036 | 4036 | ||
| 4037 | ;; If the user wants it, we scan for new groups. | 4037 | ;; If the user wants it, we scan for new groups. |
| 4038 | (when (eq gnus-check-new-newsgroups 'always) | 4038 | (when (eq gnus-check-new-newsgroups 'always) |
diff --git a/lisp/gnus/gnus-int.el b/lisp/gnus/gnus-int.el index 1190d79f778..52a8520a252 100644 --- a/lisp/gnus/gnus-int.el +++ b/lisp/gnus/gnus-int.el | |||
| @@ -537,11 +537,12 @@ If BUFFER, insert the article in that group." | |||
| 537 | "Warps from an article in a virtual group to the article in its | 537 | "Warps from an article in a virtual group to the article in its |
| 538 | real group. Does nothing on a real group." | 538 | real group. Does nothing on a real group." |
| 539 | (interactive) | 539 | (interactive) |
| 540 | (let ((gnus-command-method | 540 | (when (gnus-virtual-group-p gnus-newsgroup-name) |
| 541 | (gnus-find-method-for-group gnus-newsgroup-name))) | 541 | (let ((gnus-command-method |
| 542 | (when (gnus-check-backend-function | 542 | (gnus-find-method-for-group gnus-newsgroup-name))) |
| 543 | 'warp-to-article (car gnus-command-method)) | 543 | (when (gnus-check-backend-function |
| 544 | (funcall (gnus-get-function gnus-command-method 'warp-to-article))))) | 544 | 'warp-to-article (car gnus-command-method)) |
| 545 | (funcall (gnus-get-function gnus-command-method 'warp-to-article)))))) | ||
| 545 | 546 | ||
| 546 | (defun gnus-request-head (article group) | 547 | (defun gnus-request-head (article group) |
| 547 | "Request the head of ARTICLE in GROUP." | 548 | "Request the head of ARTICLE in GROUP." |