diff options
author | nyamatongwe <unknown> | 2011-07-09 08:55:03 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-07-09 08:55:03 +1000 |
commit | f29a332d917868f80558d0d6e71192ec596c3bc2 (patch) | |
tree | e2882b89eb55b9bed47d973f55a200b839182473 /lexers/LexPython.cxx | |
parent | cd04412a8d7ffcb011cc2ff5b92941ccbb21052b (diff) | |
download | scintilla-mirror-f29a332d917868f80558d0d6e71192ec596c3bc2.tar.gz |
Fixed mistake in last change.
Diffstat (limited to 'lexers/LexPython.cxx')
-rw-r--r-- | lexers/LexPython.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lexers/LexPython.cxx b/lexers/LexPython.cxx index 3721c4c6d..fedc31259 100644 --- a/lexers/LexPython.cxx +++ b/lexers/LexPython.cxx @@ -460,7 +460,6 @@ static void FoldPyDoc(unsigned int startPos, int length, int /*initStyle - unuse if (lineCurrent >= 1) prev_state = styler.StyleAt(startPos - 1) & 31; int prevQuote = foldQuotes && ((prev_state == SCE_P_TRIPLE) || (prev_state == SCE_P_TRIPLEDOUBLE)); - if (lineCurrent >= 1) // Process all characters to end of requested range or end of any triple quote //that hangs over the end of the range. Cap processing in all cases |