Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: [key]=value syntax, work in progress
- X-seq: zsh-workers 41705
- From: Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxx>
- Subject: Re: PATCH: [key]=value syntax, work in progress
- Date: Thu, 14 Sep 2017 21:38:46 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ntlworld.com; s=meg.feb2017; t=1505421527; bh=Y18EY+gpzsjOgFWHTWAd8Ja7tuI5le2k25RS2Dx16mU=; h=Date:From:To:Subject:In-Reply-To:References; b=i/M31Vr6JZ6/r3k2cMV1x9ZpSDVJEP/StHef62jiyQKvnHdsEubSayKO6p9AItsL0 0lpEi9mRWxV8I2XBx0fBy8xWWtbEsEn/f/7xwTJqvuOYj1dP1OcYyiePhgA4rjKr/i z8kiBmH7Kx13gjJEq0jOf4xHj8t4OZNtbbJvsmTga1T1iiJvE4gnHmfZimbCR1/Bnu LIs2F3CP+VwqRCwHiH/ytIbUOIhDv+9ASy/I7kJ/aKHY4KMfmP7XJZyLmH0WLIZXQn 5QxloBEgECy7/fQIvHM6LUFab+e9kGDjvKlzt9FVf5lqJMsy3KCr54CPTzemuMXhvs hX7R1JiTC6u8g==
- In-reply-to: <20170913204108.7a55fdd6@ntlworld.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <20170911215115.6aa27dec@ntlworld.com> <20170912212519.3d873212@ntlworld.com> <30374.1505294044@thecus.kiddle.eu> <20170913204108.7a55fdd6@ntlworld.com>
typeset -p update and other tweaks Daniel wanted (feel free to make your
own doc patches rather than getting me to do the work :-)). Does look
clearer this way.
pws
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo
index a61738f..d5e5838 100644
--- a/Doc/Zsh/expn.yo
+++ b/Doc/Zsh/expn.yo
@@ -1025,9 +1025,10 @@ ifnzman(noderef(Filename Expansion))\
ifzman(the section FILENAME EXPANSION below).
)
item(tt(e))(
-Perform em(parameter expansion), em(command substitution) and
-em(arithmetic expansion) on the result. Such expansions can be
-nested but too deep recursion may have unpredictable effects.
+Perform single word shell expansions, namely em(parameter expansion),
+em(command substitution) and em(arithmetic expansion), on the
+result. Such expansions can be nested but too deep recursion may have
+unpredictable effects.
)
item(tt(f))(
Split the result of the expansion at newlines. This is a shorthand
diff --git a/Doc/Zsh/params.yo b/Doc/Zsh/params.yo
index 33e9fd6..2534d1c 100644
--- a/Doc/Zsh/params.yo
+++ b/Doc/Zsh/params.yo
@@ -102,13 +102,16 @@ may be in any order. Note that this syntax is strict: tt([) and tt(]=) must
not be quoted, while var(key) may not consist of the unquoted string
tt(]=), but is otherwise treated as a simple string. Furthermore, all
elements must match this form or an error is generated; likewise, if the
-first entry does not match this form any later entry that does is taken
+first entry does not match this form, any later entry that does is taken
as a simple value rather than a key / value pair. The enhanced forms of
subscript expression that may be used when directly subscripting a
variable name, described in the section Array Subscripts below, are not
available. Both var(key) and var(value) undergo all forms of expansion
-allowed for single word substitutions (this does not include filename
-generation).
+allowed for single word shell expansions (this does not include filename
+generation); these are as performed by the parameter expansion flag
+tt(LPAR()e+RPAR()) as described in
+ifzman(zmanref(zshparam))\
+ifnzman(nodref(Parameter Expansion)).
If no parameter var(name) exists, an ordinary array parameter is created.
If the parameter var(name) exists and is a scalar, it is replaced by a new
diff --git a/Src/params.c b/Src/params.c
index e0aaaf6..d628ddf 100644
--- a/Src/params.c
+++ b/Src/params.c
@@ -5564,9 +5564,7 @@ printparamvalue(Param p, int printflags)
{
char *t, **u;
- if (printflags & PRINT_KV_PAIR)
- putchar(' ');
- else
+ if (!(printflags & PRINT_KV_PAIR))
putchar('=');
/* How the value is displayed depends *
@@ -5721,7 +5719,11 @@ printparamnode(HashNode hn, int printflags)
zputs(p->node.nam, stdout);
putchar('\n');
} else {
+ if (printflags & PRINT_KV_PAIR)
+ putchar('[');
quotedzputs(p->node.nam, stdout);
+ if (printflags & PRINT_KV_PAIR)
+ printf("]=");
printparamvalue(p, printflags);
}
diff --git a/Test/B02typeset.ztst b/Test/B02typeset.ztst
index ae21804..7923ae3 100644
--- a/Test/B02typeset.ztst
+++ b/Test/B02typeset.ztst
@@ -763,6 +763,7 @@
for key in ${(ok)keyvalhash}; do
print -l $key $keyvalhash[$key]
done
+ typeset -p keyvalhash
0:Substitution in [key]=val syntax
>*
>?not_globbed?
@@ -776,3 +777,4 @@
>another value
>the key
>the value
+>typeset -A keyvalhash=( ['*']='?not_globbed?' ['another key']='another value' ['the key']='the value' )
diff --git a/Test/V10private.ztst b/Test/V10private.ztst
index 78ecd48..880784e 100644
--- a/Test/V10private.ztst
+++ b/Test/V10private.ztst
@@ -123,7 +123,7 @@
print ${(kv)hash_test}
0:private hides value from surrounding scope in nested scope
>typeset -a hash_test=( top level )
->typeset -A hash_test=( in function )
+>typeset -A hash_test=( [in]=function )
>typeset -g -a hash_test=( top level )
>array-local top level
>top level
Messages sorted by:
Reverse Date,
Date,
Thread,
Author