Patch level : 10.0 no patch

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :

corretta la match


git-svn-id: svn://10.65.10.50/trunk@17448 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 2008-10-22 09:40:11 +00:00
parent c010ed692b
commit 4ca154383b

@ -497,7 +497,7 @@ void TExpression::eval()
{
const TString & s2 = evalstack.pop_string();
const TString & s1 = evalstack.pop_string();
evalstack.push(s1.match(s2)); // Match ignoring case
evalstack.push(s1.match(s2, true)); // Match ignoring case
}
break;
case _noteq: