aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-11-04 05:07:44 +0000
committernyamatongwe <unknown>2007-11-04 05:07:44 +0000
commit094899008361176f45fd452af10d5c0d7aeadced (patch)
treeac9c97c144b51d4b73578f16dac390db0ea85aff /src
parent7ee3fd1754d2073652b2ba44bf2ccd77d46ca6d4 (diff)
downloadscintilla-mirror-094899008361176f45fd452af10d5c0d7aeadced.tar.gz
Disallow '.' inside identifiers.
Diffstat (limited to 'src')
-rw-r--r--src/LexSQL.cxx2
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) {