aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexSQL.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-01-24 17:14:36 +1100
committernyamatongwe <unknown>2011-01-24 17:14:36 +1100
commit267c24ec097c65a9c8987a121b7d84e6de6becd9 (patch)
treedb16ff427b6a867c3995ad6ebe762698e27a52fc /lexers/LexSQL.cxx
parent00c32b1be00d1be4eb129e965ad96f71d09cf4cf (diff)
downloadscintilla-mirror-267c24ec097c65a9c8987a121b7d84e6de6becd9.tar.gz
Whitespace normalised.
Diffstat (limited to 'lexers/LexSQL.cxx')
-rw-r--r--lexers/LexSQL.cxx4
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);
}