diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2013-12-08 23:11:14 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2013-12-08 23:11:14 +0000 |
commit | b51eddb2a15a74dfc0628a3cf0edab4663713a53 (patch) | |
tree | 510d70c1f497d8e40b6e64c74f855fe9b562655a /lisp/gnus/gnus-msg.el | |
parent | 09a7c0fe672cbcbbc654262b0708b3dc71bc8820 (diff) | |
download | emacs-b51eddb2a15a74dfc0628a3cf0edab4663713a53.tar.gz emacs-b51eddb2a15a74dfc0628a3cf0edab4663713a53.tar.bz2 emacs-b51eddb2a15a74dfc0628a3cf0edab4663713a53.zip |
lisp/gnus/gnus-msg.el (gnus-setup-message): Fix the type of argument passed to nnir-article-number and nnir-article-group
Diffstat (limited to 'lisp/gnus/gnus-msg.el')
-rw-r--r-- | lisp/gnus/gnus-msg.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index 0f78f2edc5f..f5045e9b3cb 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/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)) @@ -446,7 +446,7 @@ Thank you for your help in stamping out bugs. (message-mode-hook (copy-sequence message-mode-hook))) (setq mml-buffer-list nil) (add-hook 'message-header-setup-hook (lambda () - (gnus-inews-insert-gcc ,group))) + (gnus-inews-insert-gcc ,group))) ;; message-newsreader and message-mailer were formerly set in ;; gnus-inews-add-send-actions, but this is too late when ;; message-generate-headers-first is used. --ansel |