diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2002-07-29 16:02:53 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2002-07-29 16:02:53 +0000 |
commit | 39bb8c9e8bf7616d26a1510834caf5849d12a1aa (patch) | |
tree | 847eecbbdc1e8a798457d027a5c7b8c9ae9075b7 /Src | |
parent | e5ccda3b9ce46d2122cb212a79aae0356d89f335 (diff) | |
download | zsh-39bb8c9e8bf7616d26a1510834caf5849d12a1aa.tar.gz zsh-39bb8c9e8bf7616d26a1510834caf5849d12a1aa.tar.xz zsh-39bb8c9e8bf7616d26a1510834caf5849d12a1aa.zip |
17485?: Incorrect test for TYPESET_SILENT
Diffstat (limited to 'Src')
-rw-r--r-- | Src/builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index 741ac2305..683cf0506 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -1691,7 +1691,7 @@ typeset_single(char *cname, char *pname, Param pm, int func, if (!on && !roff && !value) { if (ops['p']) paramtab->printnode((HashNode)pm, PRINT_TYPESET); - else if (unset(TYPESETSILENT) && !ops['m']) + else if (unset(TYPESETSILENT) || ops['m']) paramtab->printnode((HashNode)pm, PRINT_INCLUDEVALUE); return pm; } |