diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2001-08-13 17:45:03 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2001-08-13 17:45:03 +0000 |
commit | be5e65d2bbc04b66655c88cbf0f9075f50c310c2 (patch) | |
tree | 0429f6f876d7a7f6f0339a9c5104abca8ba54b37 /Test/D06subscript.ztst | |
parent | d978bb894ee6309f066973f97947b4b110a490cf (diff) | |
download | zsh-be5e65d2bbc04b66655c88cbf0f9075f50c310c2.tar.gz zsh-be5e65d2bbc04b66655c88cbf0f9075f50c310c2.tar.xz zsh-be5e65d2bbc04b66655c88cbf0f9075f50c310c2.zip |
Adjust test for new typeset restrictions.
Diffstat (limited to 'Test/D06subscript.ztst')
-rw-r--r-- | Test/D06subscript.ztst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/D06subscript.ztst b/Test/D06subscript.ztst index d3645c636..f90c1cb0a 100644 --- a/Test/D06subscript.ztst +++ b/Test/D06subscript.ztst @@ -146,8 +146,8 @@ >\2 backcbrack cbrack star >\\\4 \\\? star zounds - typeset "A[one\"two\"three\"quotes]"=QQQ - typeset 'A[one\"two\"three\"quotes]'=qqq + typeset -g "A[one\"two\"three\"quotes]"=QQQ + typeset -g 'A[one\"two\"three\"quotes]'=qqq print -R "$A[one\"two\"three\"quotes]" print -R $A[one\"two\"three\"quotes] A[one"two"three"four"quotes]=QqQq |