From aa530371b332d92555b1819ec9bde36fdeee994c Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 18 Mar 2011 09:20:34 +1100 Subject: Removed unused variable. --- lexers/LexModula.cxx | 3 --- 1 file changed, 3 deletions(-) (limited to 'lexers/LexModula.cxx') diff --git a/lexers/LexModula.cxx b/lexers/LexModula.cxx index f8a270c29..1d0361165 100644 --- a/lexers/LexModula.cxx +++ b/lexers/LexModula.cxx @@ -254,20 +254,17 @@ static void FoldModulaDoc( unsigned int startPos, int clv_old = curLevel; int pos; char ch; - bool found; int clv_new; while( cln > 0 ) { clv_new = styler.LevelAt( cln - 1 ) >> 16; if( clv_new < clv_old ) { nextLevel--; pos = styler.LineStart( cln ); - found = false; while( ( ch = styler.SafeGetCharAt( pos ) ) != '\n' ) { if( ch == 'P' ) { if( styler.StyleAt(pos) == SCE_MODULA_KEYWORD ) { if( checkKeyIdentOper( styler, pos, endPos, "PROCEDURE", '(' ) ) { - found = true; break; } } -- cgit v1.2.3