1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2026-01-03 20:51:07 +01:00

Test that ${(A)=name:=word} avoids splitting on quoted whitespace.

This commit is contained in:
Wayne Davison 2006-02-16 19:53:00 +00:00
parent 803fa9872f
commit 64aae150a0

View file

@ -551,9 +551,10 @@
local sure_that='sure that' varieties_of='varieties of' one=1 two=2
extra=(5 4 3)
unset foo
set Make $sure_that "this test keeps" on 'preserving all' "$varieties_of" quoted whitespace
print -l ${=1+"$@"}
print -l ${=1+Make $sure_that "this test keeps" on 'preserving all' "$varieties_of" quoted whitespace}
print -l ${(A)=foo=Make $sure_that "this test keeps" on 'preserving all' "$varieties_of" quoted whitespace}
print -l ${=1+$one $two}
print -l ${1+$extra$two$one}
0:Regression test of ${=1+"$@"} bug and some related expansions