diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-08-31 19:32:56 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-08-31 19:32:56 +0000 |
commit | 8bc64084a46c79be5659ef42c746a3b806816c7f (patch) | |
tree | 6276b954f096a73655ba746dfc3367b6534dca6f /Test | |
parent | afc3a7c41201ee5c6ffddb17ebe9db616f2919a1 (diff) | |
download | zsh-8bc64084a46c79be5659ef42c746a3b806816c7f.tar.gz zsh-8bc64084a46c79be5659ef42c746a3b806816c7f.tar.xz zsh-8bc64084a46c79be5659ef42c746a3b806816c7f.zip |
28220 plus some comments: fix "HELLO=$HELLO shellfunc"
Diffstat (limited to 'Test')
-rw-r--r-- | Test/A06assign.ztst | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Test/A06assign.ztst b/Test/A06assign.ztst index bbed909c5..44c8e3193 100644 --- a/Test/A06assign.ztst +++ b/Test/A06assign.ztst @@ -277,3 +277,18 @@ > > > + + call() { print $HELLO; } + export HELLO=world + call + HELLO=universe call + call + HELLO=${HELLO}liness call + call + unset HELLO +0:save and restore when using original value in temporary +>world +>universe +>world +>worldliness +>world |