aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexHTML.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2013-02-20 10:14:36 +1100
committernyamatongwe <unknown>2013-02-20 10:14:36 +1100
commitc2536af3651e431f4c3bce73aa504beb51c8fcae (patch)
tree0bb753af174c8141a77fe0fda5fdcc6ed1b84378 /lexers/LexHTML.cxx
parentf25ff2bed20459e0c2705778cc8756276f1c6eb0 (diff)
downloadscintilla-mirror-c2536af3651e431f4c3bce73aa504beb51c8fcae.tar.gz
Removed function that is no longer used.
Diffstat (limited to 'lexers/LexHTML.cxx')
-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 == '[');