diff options
| -rw-r--r-- | lexers/LexOthers.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lexers/LexOthers.cxx b/lexers/LexOthers.cxx index 7d0f099bb..bc2c28773 100644 --- a/lexers/LexOthers.cxx +++ b/lexers/LexOthers.cxx @@ -58,7 +58,7 @@ static bool IsBOperator(char ch) {  // Tests for BATCH Separators  static bool IsBSeparator(char ch) {  	return (ch == '\\') || (ch == '.') || (ch == ';') || -		(ch == '\"') || (ch == '\'') || (ch == '/') || (ch == ')'); +		(ch == '\"') || (ch == '\'') || (ch == '/');  }  static void ColouriseBatchLine( | 
