Fix tokenizer bug causing bad highlighting in multiline mode

darcs-hash:20061007210521-ac50b-5cdfc808389c928b932b0e41ef14abd71b537633.gz
This commit is contained in:
axel 2006-10-08 07:05:21 +10:00
parent 560e53fd5f
commit 1e739166b3

View File

@ -559,6 +559,7 @@ void tok_next( tokenizer *tok )
{
if(( *(tok->buff) == L'\\') &&( *(tok->buff+1) == L'\n') )
{
tok->last_pos = tok->buff - tok->orig_buff;
tok->buff+=2;
tok->last_type = TOK_END;
return;