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 | 6652c4eadad09cf6ea23b690c92d70b55a49d57f (patch) | |
tree | 955441c738e7e43de65414f956b16d678486eb1a /lexers/LexOScript.cxx | |
parent | ad16ecb14a085d950b6a243b02267a0eca50f5c9 (diff) | |
download | scintilla-mirror-6652c4eadad09cf6ea23b690c92d70b55a49d57f.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()) { |