diff options
| author | Gnus developers | 2011-01-28 00:14:08 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2011-01-28 00:14:08 +0000 |
| commit | 5d85ab5e40045fd5e1e37c102bbbcbb079457376 (patch) | |
| tree | 445c3780df5a1a3757d4e1cd179443d5dfb391d8 | |
| parent | 8937ef6e5e4dc50227bfde55a640d59311b5eafb (diff) | |
| download | emacs-5d85ab5e40045fd5e1e37c102bbbcbb079457376.tar.gz emacs-5d85ab5e40045fd5e1e37c102bbbcbb079457376.zip | |
gnus-group.el (gnus-group-refresh-group): Refresh even non-visible groups. This makes the nndraft:queue group pop up if it's not already there.
mml2015.el (mml2015-epg-sign): Add missing paren.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-group.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/mml2015.el | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 3970f61d049..60c784b4119 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2011-01-27 Lars Ingebrigtsen <larsi@gnus.org> | 1 | 2011-01-27 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible | ||
| 4 | groups. This makes the nndraft:queue group pop up if it's not already | ||
| 5 | there. | ||
| 6 | |||
| 3 | * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no | 7 | * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no |
| 4 | messages" logic, which was reversed. | 8 | messages" logic, which was reversed. |
| 5 | 9 | ||
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index a058df76333..77a4994adfd 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el | |||
| @@ -1681,7 +1681,7 @@ and ends at END." | |||
| 1681 | (gnus-activate-group group) | 1681 | (gnus-activate-group group) |
| 1682 | (gnus-get-unread-articles-in-group (gnus-get-info group) | 1682 | (gnus-get-unread-articles-in-group (gnus-get-info group) |
| 1683 | (gnus-active group)) | 1683 | (gnus-active group)) |
| 1684 | (gnus-group-update-group group t)) | 1684 | (gnus-group-update-group group)) |
| 1685 | 1685 | ||
| 1686 | (defun gnus-group-update-group (group &optional visible-only) | 1686 | (defun gnus-group-update-group (group &optional visible-only) |
| 1687 | "Update all lines where GROUP appear. | 1687 | "Update all lines where GROUP appear. |
diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el index eb01c924c2d..735f3b649e1 100644 --- a/lisp/gnus/mml2015.el +++ b/lisp/gnus/mml2015.el | |||
| @@ -966,7 +966,7 @@ Whether the passphrase is cached at all is controlled by | |||
| 966 | (context (epg-make-context)) | 966 | (context (epg-make-context)) |
| 967 | (boundary (mml-compute-boundary cont)) | 967 | (boundary (mml-compute-boundary cont)) |
| 968 | (sender (when mml2015-sign-with-sender | 968 | (sender (when mml2015-sign-with-sender |
| 969 | message-options-get 'message-sender)) | 969 | (message-options-get 'message-sender))) |
| 970 | signer-key | 970 | signer-key |
| 971 | (signers | 971 | (signers |
| 972 | (or (message-options-get 'mml2015-epg-signers) | 972 | (or (message-options-get 'mml2015-epg-signers) |