From 1e739166b3f785955bcdda485774303434b73b48 Mon Sep 17 00:00:00 2001 From: axel Date: Sun, 8 Oct 2006 07:05:21 +1000 Subject: [PATCH] Fix tokenizer bug causing bad highlighting in multiline mode darcs-hash:20061007210521-ac50b-5cdfc808389c928b932b0e41ef14abd71b537633.gz --- tokenizer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tokenizer.c b/tokenizer.c index a173716d3..81f61f644 100644 --- a/tokenizer.c +++ b/tokenizer.c @@ -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;