Indent empty lines after a block command correctly. Thanks to Philip Ganchev for the suggestion.

darcs-hash:20061009095931-ac50b-c958a6ec7a130019527e8e06d94af010d55ac3d5.gz
This commit is contained in:
axel 2006-10-09 19:59:31 +10:00
parent a321505351
commit 988a7fddf3

View File

@ -3729,6 +3729,14 @@ int parser_test( const wchar_t * buff,
}
block_level[i] = last_level;
}
for( j=len-1; j>=0; j-- )
{
if( !wcschr( L" \n\t\r", buff[j] ) )
break;
block_level[j] = count;
}
}
if( count!= 0 )