[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: sb-atom and sb-rss fetching already deleted articles
- From: David Engster <deng@xxxxxxxxxxxxxxx>
- Date: Thu, 18 Feb 2010 22:28:04 +0100
- X-ml-name: emacs-w3m
- X-mail-count: 11146
- References: <m2bpfnlx4l.fsf@xxxxxxxxxxxxxxxxxx> <b4mvddvqfpa.fsf@xxxxxxx>
Katsumi Yamaoka <yamaoka@xxxxxxx> writes:
> Thank you for the patch. I've applied it in the CVS trunk.
Unfortunately, the patch I sent for sb-rss and sb-atom contained a
stupid error - my apologies for that. Please find attached yet another
patch against current CVS which should fix this.
Regards,
David
Index: sb-rss.el
===================================================================
RCS file: /storage/cvsroot/emacs-w3m/shimbun/sb-rss.el,v
retrieving revision 1.48
diff -u -r1.48 sb-rss.el
--- sb-rss.el 18 Feb 2010 05:24:02 -0000 1.48
+++ sb-rss.el 18 Feb 2010 21:21:05 -0000
@@ -218,7 +218,7 @@
(when (and id
(shimbun-search-id shimbun id)
(not need-all-items))
- (throw 'done nil))
+ (throw 'done headers))
(when (and id
(if (and ignored-subject subject)
(not (string-match ignored-subject subject))
Index: sb-atom.el
===================================================================
RCS file: /storage/cvsroot/emacs-w3m/shimbun/sb-atom.el,v
retrieving revision 1.8
diff -u -r1.8 sb-atom.el
--- sb-atom.el 18 Feb 2010 05:24:02 -0000 1.8
+++ sb-atom.el 18 Feb 2010 21:21:05 -0000
@@ -106,7 +106,7 @@
(when (and id
(not need-all-entries)
(shimbun-search-id shimbun id))
- (throw 'done nil))
+ (throw 'done headers))
(when id
(push (shimbun-create-header
0