diff options
author | Neil <nyamatongwe@gmail.com> | 2015-11-20 11:05:28 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2015-11-20 11:05:28 +1100 |
commit | 124307f221172d8c0638307f8ea227a842b45b1f (patch) | |
tree | 40ef82f0d3ee0f65de8839c5649c2938d0f92a07 /lexers/LexOScript.cxx | |
parent | 28c1e186b953ae0c8fe7681c7d7ae8950efb266f (diff) | |
download | scintilla-mirror-124307f221172d8c0638307f8ea227a842b45b1f.tar.gz |
Remove line end whitespace.
Diffstat (limited to 'lexers/LexOScript.cxx')
-rw-r--r-- | lexers/LexOScript.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/LexOScript.cxx b/lexers/LexOScript.cxx index 8d4fe7950..ee2dddd6f 100644 --- a/lexers/LexOScript.cxx +++ b/lexers/LexOScript.cxx @@ -205,12 +205,12 @@ static void ColouriseOScriptDoc(Sci_PositionU startPos, Sci_Position length, bool isFirstToken = true; // It starts with true at the beginning of a line and changes to false as // soon as the first identifier on the line is passed by. - bool isFirstIdentifier = true; + bool isFirstIdentifier = true; // It becomes false when #ifdef DOC (the preprocessor directive often // used to start a documentation comment) is encountered and remain false // until the end of the documentation block is not detected. This is done // by checking for the complementary #endif preprocessor directive. - bool endDocComment = false; + bool endDocComment = false; for (; sc.More(); sc.Forward()) { |