[gnus git] branch master updated: m0-7-263-g53b7ac7 =1= (gnus-setup-message): Fix the type of argument passed to nnir-article-number and nnir-article-group
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 53b7ac7bdfbcfae0f490102b952d7b9d08c94a3c (commit)
from ff8a1718f96f356932784a3c613107aae25d2bf4 (commit)
- Log -----------------------------------------------------------------
commit 53b7ac7bdfbcfae0f490102b952d7b9d08c94a3c
Author: Katsumi Yamaoka <[email protected]>
Date: Sun Dec 8 23:11:02 2013 +0000
(gnus-setup-message): Fix the type of argument passed to nnir-article-number and nnir-article-group
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dc27256..b747f7c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-12-08 Katsumi Yamaoka <[email protected]>
+
+ * gnus-msg.el (gnus-setup-message): Fix the type of argument passed to
+ nnir-article-number and nnir-article-group.
+
2013-12-03 Vitalie Spinu <[email protected]>
* message.el (message-send-mail-with-sendmail):
diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el
index 0f78f2e..f5045e9 100644
--- a/lisp/gnus-msg.el
+++ b/lisp/gnus-msg.el
@@ -433,12 +433,12 @@ Thank you for your help in stamping out bugs.
(,buffer (buffer-name (current-buffer)))
(,article (if (and (gnus-nnir-group-p gnus-newsgroup-name)
gnus-article-reply)
- (nnir-article-number gnus-article-reply)
+ (nnir-article-number (length gnus-article-reply))
gnus-article-reply))
(,yanked gnus-article-yanked-articles)
(,group (if (and (gnus-nnir-group-p gnus-newsgroup-name)
gnus-article-reply)
- (nnir-article-group gnus-article-reply)
+ (nnir-article-group (length gnus-article-reply))
gnus-newsgroup-name))
(message-header-setup-hook
(copy-sequence message-header-setup-hook))
-----------------------------------------------------------------------
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-msg.el | 6 +++---
2 files changed, 8 insertions(+), 3 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