aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-02-20 10:14:36 +1100
committernyamatongwe <devnull@localhost>2013-02-20 10:14:36 +1100
commitd62c4501e6052c30c820ba0f25c3fc3b9d477970 (patch)
tree2444e623783a00a0e25dfcfcbf3b9d0d2d09c09b
parent54aad84d270b6a96e1190476c23d3264a21be8b4 (diff)
downloadscintilla-mirror-d62c4501e6052c30c820ba0f25c3fc3b9d477970.tar.gz
Removed function that is no longer used.
-rw-r--r--lexers/LexHTML.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/lexers/LexHTML.cxx b/lexers/LexHTML.cxx
index 85107b4bf..d7a1bb913 100644
--- a/lexers/LexHTML.cxx
+++ b/lexers/LexHTML.cxx
@@ -445,11 +445,6 @@ static int StateForScript(script_type scriptLanguage) {
return Result;
}
-static inline bool ishtmlwordchar(int ch) {
- return !isascii(ch) ||
- (isalnum(ch) || ch == '.' || ch == '-' || ch == '_' || ch == ':' || ch == '!' || ch == '#');
-}
-
static inline bool issgmlwordchar(int ch) {
return !isascii(ch) ||
(isalnum(ch) || ch == '.' || ch == '_' || ch == ':' || ch == '!' || ch == '#' || ch == '[');