[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: shimbun sb-zeit-de.el updates
Katsumi Yamaoka schrob:
>>>>>> In [emacs-w3m : No.08314]
>>>>>> Andreas Seltenreich <seltenreich@gmx.de> wrote:
>
>> the attached patch to sb-zeit-de adds some groups and fixes a bug with
>> missing <base href> tags.
>
> I've applied your patches. Thanks.
Oops, apparently I introduced a new bug with the patch: One of the
parenthesis didn't go where I wanted it to. The attached patch fixes
it.
regards,
Andreas
2005-08-04 Andreas Seltenreich <seltenreich@gmx.de>
* shimbun/sb-zeit-de.el (shimbun-index-url): Fix typo.
Index: sb-zeit-de.el
===================================================================
RCS file: /storage/cvsroot/emacs-w3m/shimbun/sb-zeit-de.el,v
retrieving revision 1.8
diff -c -r1.8 sb-zeit-de.el
*** sb-zeit-de.el 13 Jul 2005 23:37:28 -0000 1.8
--- sb-zeit-de.el 4 Aug 2005 10:09:37 -0000
***************
*** 96,104 ****
(luna-define-method shimbun-index-url ((shimbun shimbun-zeit-de))
(let ((group (shimbun-current-group shimbun)))
! (if (equal group "news")
! "http://newsfeed.zeit.de/")
! (concat "http://newsfeed.zeit.de/" group "/index")))
(luna-define-method shimbun-clear-contents :after ((shimbun shimbun-zeit-de)
header)
--- 96,104 ----
(luna-define-method shimbun-index-url ((shimbun shimbun-zeit-de))
(let ((group (shimbun-current-group shimbun)))
! (if (equal "news" group)
! "http://newsfeed.zeit.de/"
! (concat "http://newsfeed.zeit.de/" group "/index"))))
(luna-define-method shimbun-clear-contents :after ((shimbun shimbun-zeit-de)
header)