From c89ce9202c9f3fd4dced85255d622b57cd3465d3 Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 4 Nov 2013 09:06:18 +1100 Subject: Remove local functions that are not used. --- lexers/LexTCMD.cxx | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lexers/LexTCMD.cxx') diff --git a/lexers/LexTCMD.cxx b/lexers/LexTCMD.cxx index 041814615..d4454ea86 100644 --- a/lexers/LexTCMD.cxx +++ b/lexers/LexTCMD.cxx @@ -47,11 +47,6 @@ static bool IsBSeparator(char ch) { return (ch == '\\') || (ch == '.') || (ch == ';') || (ch == ' ') || (ch == '\t') || (ch == '[') || (ch == ']') || (ch == '\"') || (ch == '\'') || (ch == '/'); } -// Tests for Environment Variable symbol -static inline bool IsEnvironmentVar(char ch) { - return isalpha(ch) || isdigit(ch) || (ch == '_') || (ch == '$'); -} - // Find length of CMD FOR variable with modifier (%~...) or return 0 static unsigned int GetBatchVarLen( char *wordBuffer ) { -- cgit v1.2.3