[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: Shimbun updates



>>>>> 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")