From 267c24ec097c65a9c8987a121b7d84e6de6becd9 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 24 Jan 2011 17:14:36 +1100 Subject: Whitespace normalised. --- lexers/LexSQL.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lexers/LexSQL.cxx') 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 { 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); } -- cgit v1.2.3