about summary refs log tree commit diff
path: root/Src/builtin.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2015-06-25 17:45:15 +0100
committerPeter Stephenson <pws@zsh.org>2015-06-25 17:45:15 +0100
commit9265e49ccbe3f52f91be3f6c457a3db0dd2f8fbc (patch)
tree93916c1832e119cbe091ff59163e13c2fb4050fa /Src/builtin.c
parentb16d754d9cc36b5bcf506d95621ad3bd69238ab7 (diff)
downloadzsh-9265e49ccbe3f52f91be3f6c457a3db0dd2f8fbc.tar.gz
zsh-9265e49ccbe3f52f91be3f6c457a3db0dd2f8fbc.tar.xz
zsh-9265e49ccbe3f52f91be3f6c457a3db0dd2f8fbc.zip
typeset silent on repeated typeset x=()
Diffstat (limited to 'Src/builtin.c')
-rw-r--r--Src/builtin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/builtin.c b/Src/builtin.c
index ba384068d..bc685455d 100644
--- a/Src/builtin.c
+++ b/Src/builtin.c
@@ -2141,7 +2141,8 @@ typeset_single(char *cname, char *pname, Param pm, UNUSED(int func),
 	    if (OPT_ISSET(ops,'p'))
 		paramtab->printnode(&pm->node, PRINT_TYPESET);
 	    else if (!OPT_ISSET(ops,'g') &&
-		     (unset(TYPESETSILENT) || OPT_ISSET(ops,'m')))
+		     (unset(TYPESETSILENT) || OPT_ISSET(ops,'m'))
+		     && !asg->is_array)
 		paramtab->printnode(&pm->node, PRINT_INCLUDEVALUE);
 	    return pm;
 	}