diff options
author | nyamatongwe <unknown> | 2011-05-19 12:09:18 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-05-19 12:09:18 +1000 |
commit | 313dc5e904d1d73e67fc348dec331c40d585ab1f (patch) | |
tree | 1a0124931d748cb5d7cde21eaaa5f3e697f4aec8 /lexers/LexOthers.cxx | |
parent | d633114494d4666cf9aed93d0ad0c7d1c1e81148 (diff) | |
download | scintilla-mirror-313dc5e904d1d73e67fc348dec331c40d585ab1f.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( |