'main': Parameter expansions may not contain assignments.

In «a="b=c"; $a», the '=' sign in the expansion of $a is not active.
Therefore, prevent the expansion of $a from being considered an
assignment.  Update test expectations accordingly.
This commit is contained in:
Daniel Shahaf
2020-02-20 11:37:23 +00:00
parent 3558306149
commit 2f4f81cab7
3 changed files with 3 additions and 3 deletions

View File

@@ -34,5 +34,5 @@ BUFFER=$'$foobar'
expected_region_highlight=(
# Used to highlight the "ba" as 'command' because the 'ls' showed through; issues #670 and #674
'1 7 assign' # $foobar
'1 7 unknown-token' # $foobar (not an assignment)
)