From 9ecaf34524fa710775509bf380b3514386d3a7d9 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 25 Jul 2001 23:30:52 +0000 Subject: Fixed off-by-one line number error in setting up Tab-Timmy. --- src/LexPython.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/LexPython.cxx') diff --git a/src/LexPython.cxx b/src/LexPython.cxx index c3a9ab2f8..6c5eed148 100644 --- a/src/LexPython.cxx +++ b/src/LexPython.cxx @@ -207,7 +207,7 @@ static void ColourisePyDoc(unsigned int startPos, int length, int initStyle, styler.ColourTo(i, state); } lineCurrent++; - styler.IndentAmount(lineCurrent + 1, &spaceFlags, IsPyComment); + styler.IndentAmount(lineCurrent, &spaceFlags, IsPyComment); atStartLine = true; } -- cgit v1.2.3