diff options
author | nyamatongwe <devnull@localhost> | 2011-05-19 12:09:18 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-05-19 12:09:18 +1000 |
commit | ea7aa404479ca0981b5f55b8863858585b61b603 (patch) | |
tree | 32575f0cc3a483c355bc9e62754497faa6778c6c /lexers/LexOthers.cxx | |
parent | effd5384a38dd029d89cedb21b083f79aae471c7 (diff) | |
download | scintilla-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.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( |