diff options
author | nyamatongwe <unknown> | 2007-11-04 05:07:44 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-11-04 05:07:44 +0000 |
commit | 094899008361176f45fd452af10d5c0d7aeadced (patch) | |
tree | ac9c97c144b51d4b73578f16dac390db0ea85aff | |
parent | 7ee3fd1754d2073652b2ba44bf2ccd77d46ca6d4 (diff) | |
download | scintilla-mirror-094899008361176f45fd452af10d5c0d7aeadced.tar.gz |
Disallow '.' inside identifiers.
-rw-r--r-- | src/LexSQL.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |