1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-20 06:56:05 +02:00

37206: fix ${(t)param} for "typeset -H param"

This commit is contained in:
Barton E. Schaefer 2015-11-23 19:18:44 -08:00
parent 4e87006fc7
commit bc30d6bfca
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2015-11-23 Barton E. Schaefer <schaefer@zsh.org>
* 37206: Src/subst.c: fix ${(t)param} for "typeset -H param"
* 37205: Test/B01cd.ztst: update documentary comment
2015-11-23 Peter Stephenson <p.stephenson@samsung.com>

View File

@ -2454,7 +2454,7 @@ paramsubst(LinkList l, LinkNode n, char **str, int qt, int pf_flags,
val = dyncat(val, "-unique");
if (f & PM_HIDE)
val = dyncat(val, "-hide");
if (f & PM_HIDE)
if (f & PM_HIDEVAL)
val = dyncat(val, "-hideval");
if (f & PM_SPECIAL)
val = dyncat(val, "-special");