aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2006-03-01 23:36:13 +0000
committernyamatongwe <devnull@localhost>2006-03-01 23:36:13 +0000
commitd72e967336fdcf53b75fee5cda81356608752e5b (patch)
tree4ab862b0418c4f4fbe463408ae2f7e68975d8e3c
parentd437b32c337ddba5ea0d93a9abc92a1b52f1f381 (diff)
downloadscintilla-mirror-d72e967336fdcf53b75fee5cda81356608752e5b.tar.gz
Bug 1439324 fixed by removing '.' from valid word characters in Eiffel.
-rw-r--r--src/LexEiffel.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexEiffel.cxx b/src/LexEiffel.cxx
index e9e154cd5..4aed7c6af 100644
--- a/src/LexEiffel.cxx
+++ b/src/LexEiffel.cxx
@@ -32,7 +32,7 @@ static inline bool isEiffelOperator(unsigned int ch) {
}
static inline bool IsAWordChar(unsigned int ch) {
- return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_');
+ return (ch < 0x80) && (isalnum(ch) || ch == '_');
}
static inline bool IsAWordStart(unsigned int ch) {