commit 6804ae0c0351eda88f5ffa379367c22c049ac23b
parent b2391fca2d23b4ea30ee9ae0e518072b33496f09
Author: ukai <ukai>
Date: Fri, 25 Oct 2002 20:02:30 +0000
* [w3m-dev-en 00781] "Clemens Fischer" <ino-waiting@gmx.net>
zope doesn't recognize implied *LWS in accept-language
* rc.c (sync_with_option): remove optional LWS
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat:
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,5 +1,11 @@
2002-10-26 Fumitoshi UKAI <ukai@debian.or.jp>
+ * [w3m-dev-en 00781] "Clemens Fischer" <ino-waiting@gmx.net>
+ zope doesn't recognize implied *LWS in accept-language
+ * rc.c (sync_with_option): remove optional LWS
+
+2002-10-26 Fumitoshi UKAI <ukai@debian.or.jp>
+
* [w3m-dev-en 00780] "Carlo E. Prelz" <fluido@fluido.as>
always print on screen the relative position
* display.c (displayBuffer): relative position
diff --git a/rc.c b/rc.c
@@ -1238,9 +1238,9 @@ sync_with_option(void)
if (AcceptLang == NULL || *AcceptLang == '\0') {
#if LANG == JA
- AcceptLang = "ja; q=1.0, en; q=0.5";
+ AcceptLang = "ja;q=1.0, en;q=0.5";
#else /* LANG != JA (must be EN) */
- AcceptLang = "en; q=1.0";
+ AcceptLang = "en;q=1.0";
#endif
}
if (AcceptEncoding == NULL || *AcceptEncoding == '\0')