aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/CharacterSet.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-05-13 08:29:09 +1000
committernyamatongwe <devnull@localhost>2011-05-13 08:29:09 +1000
commit3166c901c7d071f2083a1a29ca710171fd7cf699 (patch)
treeea7474eb18ff2ef191595617b7f95f547ce1f23e /lexlib/CharacterSet.h
parenta8dd1958cf948a80aaf6f22662766b93659751ad (diff)
downloadscintilla-mirror-3166c901c7d071f2083a1a29ca710171fd7cf699.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 == '}' ||