diff options
author | Neil <nyamatongwe@gmail.com> | 2013-10-17 09:45:03 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-10-17 09:45:03 +1100 |
commit | 3f2dfe28853e459227da8397faa2ddbda331dc32 (patch) | |
tree | b1a6550d50ab2f6b6df8ab1e70befd5c16022f27 /lexers/LexCPP.cxx | |
parent | 6dea080be8df3c336e0414e410e67b0f4e45e44f (diff) | |
download | scintilla-mirror-3f2dfe28853e459227da8397faa2ddbda331dc32.tar.gz |
Bug [#1538]. PP-line comments lost from EOL string.
From Alpha.
Diffstat (limited to 'lexers/LexCPP.cxx')
-rw-r--r-- | lexers/LexCPP.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexCPP.cxx b/lexers/LexCPP.cxx index 6f7afc23d..edf415ca4 100644 --- a/lexers/LexCPP.cxx +++ b/lexers/LexCPP.cxx @@ -685,7 +685,7 @@ void SCI_METHOD LexerCPP::Lex(unsigned int startPos, int length, int initStyle, if (IsASpace(sc.ch)) { sc.SetState(SCE_C_DEFAULT|activitySet); } - } else if (isStringInPreprocessor && (sc.Match('>') || sc.Match('\"'))) { + } else if (isStringInPreprocessor && (sc.Match('>') || sc.Match('\"') || sc.atLineEnd)) { isStringInPreprocessor = false; } else if (!isStringInPreprocessor) { if ((isIncludePreprocessor && sc.Match('<')) || sc.Match('\"')) { |