Commit 464fda3f by Alan Mishchenko

Fix parsing tab symbol in Liberty files.

parent 813db6e7
...@@ -596,7 +596,7 @@ static inline int Amap_LibertySkipEntry( char ** ppPos, char * pEnd ) ...@@ -596,7 +596,7 @@ static inline int Amap_LibertySkipEntry( char ** ppPos, char * pEnd )
else else
{ {
for ( ; pPos < pEnd; pPos++ ) for ( ; pPos < pEnd; pPos++ )
if ( *pPos == ' ' || *pPos == '\r' || *pPos == '\n' || if ( *pPos == ' ' || *pPos == '\r' || *pPos == '\n' || *pPos == '\t' ||
*pPos == ':' || *pPos == ';' || *pPos == ':' || *pPos == ';' ||
*pPos == '(' || *pPos == ')' || *pPos == '(' || *pPos == ')' ||
*pPos == '{' || *pPos == '}' ) *pPos == '{' || *pPos == '}' )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment