diff options
author | Neil <nyamatongwe@gmail.com> | 2013-11-04 09:06:18 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-11-04 09:06:18 +1100 |
commit | c89ce9202c9f3fd4dced85255d622b57cd3465d3 (patch) | |
tree | 759b9b5376c9bc15ab6410d641dc6df53d017343 /lexers/LexTCMD.cxx | |
parent | 0000ed4f8695e614287c7560b99893673754b3cc (diff) | |
download | scintilla-mirror-c89ce9202c9f3fd4dced85255d622b57cd3465d3.tar.gz |
Remove local functions that are not used.
Diffstat (limited to 'lexers/LexTCMD.cxx')
-rw-r--r-- | lexers/LexTCMD.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
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 ) { |