diff options
author | Peter Stephenson <pws@zsh.org> | 2015-07-02 10:01:42 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-07-02 10:01:42 +0100 |
commit | 2afdb3985aae08403e1e5ab6193cd67c695b6e2b (patch) | |
tree | e6c66c0eefef3309f34d7153c7ecfd5949edd99f /Test/D03procsubst.ztst | |
parent | dce1f33c02c855e9d5f588716d7e9ddaea3887ba (diff) | |
download | zsh-2afdb3985aae08403e1e5ab6193cd67c695b6e2b.tar.gz zsh-2afdb3985aae08403e1e5ab6193cd67c695b6e2b.tar.xz zsh-2afdb3985aae08403e1e5ab6193cd67c695b6e2b.zip |
35668: Improved fix for command/proc subst starting in alias.
Use input flag to suppress the unwanted backtracking. Add test for the extra case covered.
Diffstat (limited to 'Test/D03procsubst.ztst')
-rw-r--r-- | Test/D03procsubst.ztst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Test/D03procsubst.ztst b/Test/D03procsubst.ztst index 07ec63996..7b8758901 100644 --- a/Test/D03procsubst.ztst +++ b/Test/D03procsubst.ztst @@ -121,3 +121,8 @@ eval 'foo echo this is bound to work)' 0:backtacking within command string parsing with alias still pending >this is bound to work + + alias foo='cat <( print' + eval 'foo here is some output)' +0:full alias expanded when substitution starts in alias +>here is some output |