aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/CharacterSet.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-05-13 08:29:09 +1000
committernyamatongwe <unknown>2011-05-13 08:29:09 +1000
commit67e0bd9337d9592fbc1199e3ab6f063ea1e62b45 (patch)
tree11fa2575c0c2740a7d5af402f5e665b5c69935f9 /lexlib/CharacterSet.h
parent003ae24bd7a9e07a15967445a7095880c3b1e66b (diff)
downloadscintilla-mirror-67e0bd9337d9592fbc1199e3ab6f063ea1e62b45.tar.gz
Removed confusing comment. Bug #3301002.
Diffstat (limited to 'lexlib/CharacterSet.h')
-rw-r--r--lexlib/CharacterSet.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lexlib/CharacterSet.h b/lexlib/CharacterSet.h
index 72405606a..ba42ea3d6 100644
--- a/lexlib/CharacterSet.h
+++ b/lexlib/CharacterSet.h
@@ -119,7 +119,6 @@ inline bool iswordstart(int ch) {
inline bool isoperator(int ch) {
if (IsASCII(ch) && IsAlphaNumeric(ch))
return false;
- // '.' left out as it is used to make up numbers
if (ch == '%' || ch == '^' || ch == '&' || ch == '*' ||
ch == '(' || ch == ')' || ch == '-' || ch == '+' ||
ch == '=' || ch == '|' || ch == '{' || ch == '}' ||