aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-11-04 05:07:44 +0000
committernyamatongwe <devnull@localhost>2007-11-04 05:07:44 +0000
commitd9283cb7e54c227db82344ff13269ed2e3e5567e (patch)
treeac9c97c144b51d4b73578f16dac390db0ea85aff
parentcb49cd45cf3805daa7ec28244037c772c7208f13 (diff)
downloadscintilla-mirror-d9283cb7e54c227db82344ff13269ed2e3e5567e.tar.gz
Disallow '.' inside identifiers.
-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) {