From c2536af3651e431f4c3bce73aa504beb51c8fcae Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 20 Feb 2013 10:14:36 +1100 Subject: Removed function that is no longer used. --- lexers/LexHTML.cxx | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lexers/LexHTML.cxx') 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 == '['); -- cgit v1.2.3