about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2014-11-27 13:41:13 -0800
committerBarton E. Schaefer <schaefer@zsh.org>2014-11-27 13:41:13 -0800
commitbaaa57acaf43cec5113296eda7c74d07db36b456 (patch)
tree2f854c3a5101afe52a826d565283a024ad6a75bf
parent62e4db10fed8f5e86f29cfc25f3364f360a66bc4 (diff)
downloadzsh-baaa57acaf43cec5113296eda7c74d07db36b456.tar.gz
zsh-baaa57acaf43cec5113296eda7c74d07db36b456.tar.xz
zsh-baaa57acaf43cec5113296eda7c74d07db36b456.zip
33804: hide values of large arrays in typeset output
Declare arrays used internally by completion with the -H attribute.
-rw-r--r--ChangeLog5
-rw-r--r--Completion/compinit10
2 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 5ee0aedde..d5e32cfc5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-11-27  Barton E. Schaefer  <schaefer@zsh.org>
+
+	* 33804: Completion/compinit: hide values of large arrays in
+	typeset output by declaring with the -H attribute
+
 2014-11-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>
 
 	* unposted: Test/C01arith.ztst: test binary input using 0b.
diff --git a/Completion/compinit b/Completion/compinit
index f9d2c574c..e42430d6c 100644
--- a/Completion/compinit
+++ b/Completion/compinit
@@ -105,17 +105,17 @@ done
 # The associative arrays containing the definitions for the commands and
 # services.
 
-typeset -gA _comps _services _patcomps _postpatcomps
+typeset -gHA _comps _services _patcomps _postpatcomps
 
 # `_compautos' contains the names and options for autoloaded functions
 # that get options.
 
-typeset -gA _compautos
+typeset -gHA _compautos
 
 # The associative array use to report information about the last
 # completion to the outside.
 
-typeset -gA _lastcomp
+typeset -gHA _lastcomp
 
 # Remember dumpfile.
 if [[ -n $_i_dumpfile ]]; then
@@ -127,7 +127,7 @@ fi
 
 # The standard options set in completion functions.
 
-typeset -ga _comp_options
+typeset -gHa _comp_options
 _comp_options=(
        bareglobqual
        extendedglob
@@ -161,7 +161,7 @@ _comp_options=(
 # have a valid stdin descriptor (zle closes it before calling widgets)
 # and don't get confused by user's ZERR trap handlers.
 
-typeset -g _comp_setup='local -A _comp_caller_options;
+typeset -gH _comp_setup='local -A _comp_caller_options;
              _comp_caller_options=(${(kv)options[@]});
              setopt localoptions localtraps localpatterns ${_comp_options[@]};
              local IFS=$'\'\ \\t\\r\\n\\0\''