diff options
author | nyamatongwe <unknown> | 2011-01-24 17:14:36 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-01-24 17:14:36 +1100 |
commit | 267c24ec097c65a9c8987a121b7d84e6de6becd9 (patch) | |
tree | db16ff427b6a867c3995ad6ebe762698e27a52fc | |
parent | 00c32b1be00d1be4eb129e965ad96f71d09cf4cf (diff) | |
download | scintilla-mirror-267c24ec097c65a9c8987a121b7d84e6de6becd9.tar.gz |
Whitespace normalised.
-rw-r--r-- | lexers/LexSQL.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/LexSQL.cxx b/lexers/LexSQL.cxx index 6a07c5231..d60e6c0af 100644 --- a/lexers/LexSQL.cxx +++ b/lexers/LexSQL.cxx @@ -42,7 +42,7 @@ static inline bool IsAWordChar(int ch, bool sqlAllowDottedWord) { if (!sqlAllowDottedWord) return (ch < 0x80) && (isalnum(ch) || ch == '_'); else - return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch=='.'); + return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '.'); } static inline bool IsAWordStart(int ch) { @@ -229,7 +229,7 @@ struct OptionSetSQL : public OptionSet<OptionsSQL> { DefineProperty("lexer.sql.allow.dotted.word", &OptionsSQL::sqlAllowDottedWord, "Set to 1 to colourise recognized words with dots " - "(recommended for Oracle PL/SQL objects)."); + "(recommended for Oracle PL/SQL objects)."); DefineWordListSets(sqlWordListDesc); } |