This commit is contained in:
Kim Kulling
2017-05-25 22:40:36 +02:00
40 changed files with 3744 additions and 112 deletions

View File

@@ -79,8 +79,10 @@ inline Char_T getNextWord( Char_T pBuffer, Char_T pEnd )
{
while ( !isEndOfBuffer( pBuffer, pEnd ) )
{
if( !IsSpaceOrNewLine( *pBuffer ) || IsLineEnd( *pBuffer ) )
break;
if ( !IsSpaceOrNewLine( *pBuffer ) || IsLineEnd( *pBuffer ) ) {
//if ( *pBuffer != '\\' )
break;
}
pBuffer++;
}
return pBuffer;