decoding URLs in correct condition.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2007-05-23 tamo
|
||||||
|
|
||||||
|
* [20070121110209@w3mbbs] unnecessary decoding in linein.c
|
||||||
|
* linein.c: decoding URLs in correct condition.
|
||||||
|
|
||||||
2007-05-23 Tsutomu OKADA
|
2007-05-23 Tsutomu OKADA
|
||||||
|
|
||||||
* [20061228000713@w3mbbs] avoid warning for file.c
|
* [20061228000713@w3mbbs] avoid warning for file.c
|
||||||
@@ -8816,4 +8821,4 @@ a * [w3m-dev 03276] compile error on EWS4800
|
|||||||
* release-0-2-1
|
* release-0-2-1
|
||||||
* import w3m-0.2.1
|
* import w3m-0.2.1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.979 2007/05/23 12:01:43 inu Exp $
|
$Id: ChangeLog,v 1.980 2007/05/23 12:14:24 inu Exp $
|
||||||
|
|||||||
6
linein.c
6
linein.c
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: linein.c,v 1.34 2003/09/26 17:59:51 ukai Exp $ */
|
/* $Id: linein.c,v 1.35 2007/05/23 12:14:24 inu Exp $ */
|
||||||
#include "fm.h"
|
#include "fm.h"
|
||||||
#include "local.h"
|
#include "local.h"
|
||||||
#include "myctype.h"
|
#include "myctype.h"
|
||||||
@@ -1025,7 +1025,7 @@ _prev(void)
|
|||||||
return;
|
return;
|
||||||
strCurrentBuf = strBuf;
|
strCurrentBuf = strBuf;
|
||||||
}
|
}
|
||||||
if (DecodeURL)
|
if (DecodeURL && (cm_mode & CPL_URL) )
|
||||||
p = url_unquote_conv(p, 0);
|
p = url_unquote_conv(p, 0);
|
||||||
strBuf = Strnew_charp(p);
|
strBuf = Strnew_charp(p);
|
||||||
CLen = CPos = setStrType(strBuf, strProp);
|
CLen = CPos = setStrType(strBuf, strProp);
|
||||||
@@ -1044,7 +1044,7 @@ _next(void)
|
|||||||
return;
|
return;
|
||||||
p = nextHist(hist);
|
p = nextHist(hist);
|
||||||
if (p) {
|
if (p) {
|
||||||
if (DecodeURL)
|
if (DecodeURL && (cm_mode & CPL_URL) )
|
||||||
p = url_unquote_conv(p, 0);
|
p = url_unquote_conv(p, 0);
|
||||||
strBuf = Strnew_charp(p);
|
strBuf = Strnew_charp(p);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user