about summary refs log tree commit diff
path: root/Functions/VCS_Info/VCS_INFO_quilt
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2015-08-09 23:53:24 +0200
committerMikael Magnusson <mikachu@gmail.com>2015-08-12 04:31:22 +0200
commitc5abf2bcff289363207e0faae8fd33413f59231f (patch)
treec0ca2af7b1eefc76376841d0697755d3c9993013 /Functions/VCS_Info/VCS_INFO_quilt
parentc21a3fddf4e2b1117a3d51196091a2da34a869b6 (diff)
downloadzsh-c5abf2bcff289363207e0faae8fd33413f59231f.tar.gz
zsh-c5abf2bcff289363207e0faae8fd33413f59231f.tar.xz
zsh-c5abf2bcff289363207e0faae8fd33413f59231f.zip
36077: vcs_info: stop exporting everything
Diffstat (limited to 'Functions/VCS_Info/VCS_INFO_quilt')
-rw-r--r--Functions/VCS_Info/VCS_INFO_quilt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Functions/VCS_Info/VCS_INFO_quilt b/Functions/VCS_Info/VCS_INFO_quilt
index 34ff1edbf..bc71cfb7d 100644
--- a/Functions/VCS_Info/VCS_INFO_quilt
+++ b/Functions/VCS_Info/VCS_INFO_quilt
@@ -86,9 +86,9 @@ function VCS_INFO_quilt() {
     local mode="$1"
     local patches pc tmp qstring root
     local -i ret
-    local -x context
+    local context
     local -a applied unapplied all applied_string unapplied_string quiltcommand quilt_env
-    local -Ax hook_com
+    local -A hook_com
 
     context=":vcs_info:${vcs}.quilt-${mode}:${usercontext}:${rrn}"
     zstyle -t "${context}" use-quilt || return 1
@@ -183,7 +183,7 @@ function VCS_INFO_quilt() {
         VCS_INFO_set
         ;;
     (addon)
-        # When VCS_INFO_quilt() is called with "addon" a "local -x REPLY" variable
+        # When VCS_INFO_quilt() is called with "addon" a "local REPLY" variable
         # should be in place. That variable can be unset after it's being used.
         REPLY="${qstring}"
         ;;