pull/13/head
Ludovic Marcotte 2013-09-25 13:51:42 -04:00
parent 29eed182a7
commit 99d38417cc
1 changed files with 9 additions and 1 deletions

View File

@ -694,10 +694,18 @@ const unsigned short ansicpg874[256] = {
}
else if (*(_bytes+1) == '*')
{
while (*_bytes != '}')
int cc = 1;
do
{
if (*_bytes == '{')
cc++;
if (*_bytes == '}')
cc--;
ADVANCE;
}
while (cc != 0);
continue;
}