summary refs log tree commit diff
path: root/Test
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2015-11-12 14:28:15 +0000
committerPeter Stephenson <pws@zsh.org>2015-11-12 14:28:15 +0000
commitd814071b1420418a3243642a5cdeb3946e7d1939 (patch)
treefd24174bec58258a472a47cdde0ce7a7b2cd5dc2 /Test
parent7a951ef93ef2cc6baac9ec3b51909ad44e4bfe15 (diff)
downloadzsh-d814071b1420418a3243642a5cdeb3946e7d1939.tar.gz
zsh-d814071b1420418a3243642a5cdeb3946e7d1939.tar.xz
zsh-d814071b1420418a3243642a5cdeb3946e7d1939.zip
37096: Another $${(P)...} tweak.
Make a top level (P) work with nested ones, i.e. ${(P)${(P)...}...}
Diffstat (limited to 'Test')
-rw-r--r--Test/D04parameter.ztst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/D04parameter.ztst b/Test/D04parameter.ztst
index 6f325d293..210c0d854 100644
--- a/Test/D04parameter.ztst
+++ b/Test/D04parameter.ztst
@@ -1840,7 +1840,7 @@
     local two=three
     local three=four
     local -a four=(all these worlds belong to foo)
-    print ${${(P)${(P)${(P)one}}}}
+    print ${(P)${(P)${(P)one}}}
     print ${${(P)${(P)${(P)one}}}[3]}
   }
   testfn