From 1825096337e5825dc39d8c918d4bd8bfb0888c33 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 1 Mar 2006 23:36:13 +0000 Subject: Bug 1439324 fixed by removing '.' from valid word characters in Eiffel. --- src/LexEiffel.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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) { -- cgit v1.2.3