diff options
author | nyamatongwe <unknown> | 2010-05-05 23:06:51 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-05-05 23:06:51 +0000 |
commit | af86ae121bf2a2d03c5128c8ec0fec60885ba0de (patch) | |
tree | f7376ed1161685763b1945d46720e923dc7500f0 /src | |
parent | a0ce186104b4de5c6fe0b7f2c2233a7bd4886b0b (diff) | |
download | scintilla-mirror-af86ae121bf2a2d03c5128c8ec0fec60885ba0de.tar.gz |
lexer.flagship.styling.within.preprocessor defaults to 1.
Diffstat (limited to 'src')
-rw-r--r-- | src/LexFlagship.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LexFlagship.cxx b/src/LexFlagship.cxx index e038a6900..f0c794e76 100644 --- a/src/LexFlagship.cxx +++ b/src/LexFlagship.cxx @@ -46,9 +46,9 @@ static void ColouriseFlagShipDoc(unsigned int startPos, int length, int initStyl WordList &keywords5 = *keywordlists[4]; // property lexer.flagship.styling.within.preprocessor - // For Harbour code, determines whether all preprocessor code is styled in the preprocessor style (0, the default) or - // only from the initial # to the end of the command word(1). It also determines how presents: text, dump, code disabled. - bool stylingWithinPreprocessor = styler.GetPropertyInt("lexer.flagship.styling.within.preprocessor") != 0; + // For Harbour code, determines whether all preprocessor code is styled in the preprocessor style (0) or only from the + // initial # to the end of the command word(1, the default). It also determines how to present text, dump, and disabled code. + bool stylingWithinPreprocessor = styler.GetPropertyInt("lexer.flagship.styling.within.preprocessor", 1) != 0; CharacterSet setDoxygen(CharacterSet::setAlpha, "$@\\&<>#{}[]"); |