diff options
author | nyamatongwe <devnull@localhost> | 2007-11-04 05:07:44 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-11-04 05:07:44 +0000 |
commit | d9283cb7e54c227db82344ff13269ed2e3e5567e (patch) | |
tree | ac9c97c144b51d4b73578f16dac390db0ea85aff | |
parent | cb49cd45cf3805daa7ec28244037c772c7208f13 (diff) | |
download | scintilla-mirror-d9283cb7e54c227db82344ff13269ed2e3e5567e.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) { |