[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Shimbun updates
- From: Katsumi Yamaoka <yamaoka@xxxxxxx>
- Date: Wed, 24 Dec 2008 17:40:47 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 10559
- References: <877i5rhzg1.fsf@xxxxxxxx> <b4miqpaf1aa.fsf@xxxxxxx>
>>>>> In [emacs-w3m : No.10558] Katsumi Yamaoka wrote:
>>>>>> In [emacs-w3m : No.10554] David Engster wrote:
>> Attached are two patches for the slashdot and the sueddeutsche-de
>> shimbuns. Please see the ChangeLog entry for details.
>> Regards,
>> David
> Thanks for the patches. I've applied them in the emacs-w3m trunk.
`member-ignore-case' that `shimbun-slashdot-get-headers' uses is
not available in XEmacs 21.4. Could it be changed as follows?
--- sb-slashdot.el~ 2008-12-24 07:59:51 +0000
+++ sb-slashdot.el 2008-12-24 08:35:09 +0000
@@ -122,9 +122,7 @@
hour (match-string 4)
minute (match-string 5)
ampm (match-string 6))
- (setq month
- (- 13 (length
- (member-ignore-case month allmonths))))
+ (setq month (- 13 (length (member (downcase month) allmonths))))
;; US->European time conversion
(cond
((and (string= ampm "PM")