From 841e60c3408bc9b5eb679efd5cb4f7285cf799e8 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Fri, 21 Dec 2012 11:28:33 +0000 Subject: this prevent process-based features from working in their arguments --- Test/D03procsubst.ztst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'Test') diff --git a/Test/D03procsubst.ztst b/Test/D03procsubst.ztst index 602b1da15..88fa902bb 100644 --- a/Test/D03procsubst.ztst +++ b/Test/D03procsubst.ztst @@ -88,3 +88,22 @@ print something=${:-=(echo 'C,D),(F,G)'} 1: Graceful handling of bad substitution in enclosed context ?(eval):1: unterminated `=(...)' + + () { + print -n "first: " + cat $1 + print -n "second: " + cat $2 + } =(echo This becomes argument one) =(echo and this argument two) + function { + print -n "third: " + cat $1 + print -n "fourth: " + cat $2 + } =(echo This becomes argument three) =(echo and this argument four) +0:Process environment of anonymous functions +>first: This becomes argument one +>second: and this argument two +>third: This becomes argument three +>fourth: and this argument four + -- cgit 1.4.1