diff options
author | nyamatongwe <devnull@localhost> | 2011-07-09 08:55:03 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-07-09 08:55:03 +1000 |
commit | 41431d6922f26010bba326a13f74b45d15d2d15a (patch) | |
tree | 1a6aeb941edccff7b3c35a11e19a2cfa8572c3c4 /lexers/LexPython.cxx | |
parent | 78fd0ca1ad33051ff89b9e587ad1f2f4318ccbc7 (diff) | |
download | scintilla-mirror-41431d6922f26010bba326a13f74b45d15d2d15a.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 |