* Leo (2006-10-24 23:33 +0100) said:
^^^
> Hi there,
>
> I recently updated to No Gnus 0.6 and find that planner behaves
> slightly different when open a Gnus link. It will prompt me for how
> many articles, but whatever number I type only one is shown.
>
> How can I get back the old behavior i.e. just open the email without
> any user interaction?
>
> Thanks,
This is bug is due to the change in gnus-fetch-group.
(gnus-fetch-group group &optional articles)
The argument articles means completely different things in Gnus 5.11
and NoGnus.
The following patch will fix it i.e. it should work in both Gnus 5.11
and NoGnus.
diff -u /usr/local/share/emacs/site-lisp/planner/planner-gnus.el /tmp/buffer-content-9289PsK
--- /usr/local/share/emacs/site-lisp/planner/planner-gnus.el 2007-01-10 12:41:05.000000000 +0000
+++ /tmp/buffer-content-9289PsK 2007-01-10 14:08:30.000000000 +0000
@@ -219,7 +219,7 @@
;; unread articles as read.
(let ((gnus-auto-select-first nil))
(condition-case err
- (gnus-fetch-group group planner-gnus-group-threshold)
+ (gnus-group-read-group planner-gnus-group-threshold t group)
(error (gnus-fetch-group group))))
(mapcar
(lambda (article-id)
Diff finished. Wed Jan 10 14:08:30 2007
--
Leo <sdl.web AT gmail.com> (GPG Key: 9283AA3F)
_______________________________________________
Planner-el-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/planner-el-discuss