aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexPython.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2005-06-06 00:09:19 +0000
committernyamatongwe <unknown>2005-06-06 00:09:19 +0000
commit5b1c5e4e0bc172d8db4cb5e645842ab77946171f (patch)
tree488beb3b8169585ae4f65584ff68c1a93fcd389c /src/LexPython.cxx
parentaa132159aeb279dc188585c420d8497fe9eaaeda (diff)
downloadscintilla-mirror-5b1c5e4e0bc172d8db4cb5e645842ab77946171f.tar.gz
Fixed line end.
Diffstat (limited to 'src/LexPython.cxx')
-rw-r--r--src/LexPython.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/LexPython.cxx b/src/LexPython.cxx
index 1db5669e1..e13c6220d 100644
--- a/src/LexPython.cxx
+++ b/src/LexPython.cxx
@@ -265,7 +265,8 @@ static void ColourisePyDoc(unsigned int startPos, int length, int initStyle,
} else if (IsPyStringStart(sc.ch, sc.chNext, sc.GetRelative(2))) {
unsigned int nextIndex = 0;
sc.SetState(GetPyStringState(styler, sc.currentPos, &nextIndex));
- while (nextIndex > (sc.currentPos + 1) && sc.More()) { sc.Forward();
+ while (nextIndex > (sc.currentPos + 1) && sc.More()) {
+ sc.Forward();
}
} else if (IsAWordStart(sc.ch)) {
sc.SetState(SCE_P_IDENTIFIER);