aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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) {