aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexOthers.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-05-19 12:09:18 +1000
committernyamatongwe <devnull@localhost>2011-05-19 12:09:18 +1000
commitea7aa404479ca0981b5f55b8863858585b61b603 (patch)
tree32575f0cc3a483c355bc9e62754497faa6778c6c /lexers/LexOthers.cxx
parenteffd5384a38dd029d89cedb21b083f79aae471c7 (diff)
downloadscintilla-mirror-ea7aa404479ca0981b5f55b8863858585b61b603.tar.gz
Variables names may contain braces like %ProgramFiles(x86)%.
These are now treated as one variable name instead of being broken up. From Florian Balmer.
Diffstat (limited to 'lexers/LexOthers.cxx')
-rw-r--r--lexers/LexOthers.cxx2
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(