diff options
| author | nyamatongwe <devnull@localhost> | 2011-01-24 17:14:36 +1100 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-01-24 17:14:36 +1100 | 
| commit | deb3946161485b78a64f79ee749ac371f1088619 (patch) | |
| tree | 70b99f66e179f4c58aa6a3a69752ab1a3972d01f /lexers/LexSQL.cxx | |
| parent | 9837d402d9e409985c966ec7f27a319dcaad4b5d (diff) | |
| download | scintilla-mirror-deb3946161485b78a64f79ee749ac371f1088619.tar.gz | |
Whitespace normalised.
Diffstat (limited to 'lexers/LexSQL.cxx')
| -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);  	} | 
