diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2000-06-12 09:27:09 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2000-06-12 09:27:09 +0000 |
commit | 055d961f84fcfb430aceb40bdb7932d962b143e9 (patch) | |
tree | 75ccaf7156e47c96ffe471f7c94054f28bf7a67d /Src/builtin.c | |
parent | 21f6b9d14c100f0887d03422a21c57a0e327fde1 (diff) | |
download | zsh-055d961f84fcfb430aceb40bdb7932d962b143e9.tar.gz zsh-055d961f84fcfb430aceb40bdb7932d962b143e9.tar.xz zsh-055d961f84fcfb430aceb40bdb7932d962b143e9.zip |
11867: restrict typeset -H application
Diffstat (limited to 'Src/builtin.c')
-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 950595c72..8ea88862f 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -1598,7 +1598,7 @@ typeset_single(char *cname, char *pname, Param pm, int func, if (usepm) { on &= ~PM_LOCAL; if (!on && !roff && !value) { - paramtab->printnode((HashNode)pm, 0); + paramtab->printnode((HashNode)pm, PRINT_INCLUDEVALUE); return pm; } if ((pm->flags & PM_RESTRICTED) && isset(RESTRICTED)) { |