lisp/gnus/gnus-msg.el (gnus-setup-message): Fix the type of argument passed to nnir-article-number and nnir-article-group
This commit is contained in:
parent
09a7c0fe67
commit
b51eddb2a1
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-12-08 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* 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 <spinuvit@gmail.com>
|
||||
|
||||
* message.el (message-send-mail-with-sendmail):
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue