diff options
author | nyamatongwe <unknown> | 2011-03-18 09:20:34 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-03-18 09:20:34 +1100 |
commit | 520fb421f020d7c2af83a2b6510c893fea64b80c (patch) | |
tree | 329211a43146a5fff61f8202d001f19fcebd7d5d | |
parent | bff0a49e4af3ae810984ae0b6699df12c402a675 (diff) | |
download | scintilla-mirror-520fb421f020d7c2af83a2b6510c893fea64b80c.tar.gz |
Removed unused variable.
-rw-r--r-- | lexers/LexModula.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
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; } } |