* [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>
This commit is contained in:
Fumitoshi UKAI
2002-10-25 20:02:30 +00:00
parent 738e4a6e31
commit 99f619ecf1
2 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
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>
@@ -3963,4 +3969,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1
* import w3m-0.2.1
$Id: ChangeLog,v 1.447 2002/10/25 19:59:48 ukai Exp $
$Id: ChangeLog,v 1.448 2002/10/25 20:02:30 ukai Exp $

6
rc.c
View File

@@ -1,4 +1,4 @@
/* $Id: rc.c,v 1.49 2002/09/24 16:35:02 ukai Exp $ */
/* $Id: rc.c,v 1.50 2002/10/25 20:02:41 ukai Exp $ */
/*
* Initialization file etc.
*/
@@ -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')