From 094899008361176f45fd452af10d5c0d7aeadced Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 4 Nov 2007 05:07:44 +0000 Subject: Disallow '.' inside identifiers. --- src/LexSQL.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/LexSQL.cxx') diff --git a/src/LexSQL.cxx b/src/LexSQL.cxx index 98ccdca8d..eb1cddbdf 100644 --- a/src/LexSQL.cxx +++ b/src/LexSQL.cxx @@ -25,7 +25,7 @@ using namespace Scintilla; #endif static inline bool IsAWordChar(int ch) { - return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_'); + return (ch < 0x80) && (isalnum(ch) || ch == '_'); } static inline bool IsAWordStart(int ch) { -- cgit v1.2.3