about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2001-03-12 17:17:34 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2001-03-12 17:17:34 +0000
commitffe07b38293f4e10fcdd52dc4a846706fd9788e6 (patch)
tree74c2740638dab6919102567bb5e9f83a38d72de3 /Completion
parent055c7814643343814e2465632c16fb4914f06604 (diff)
downloadzsh-ffe07b38293f4e10fcdd52dc4a846706fd9788e6.tar.gz
zsh-ffe07b38293f4e10fcdd52dc4a846706fd9788e6.tar.xz
zsh-ffe07b38293f4e10fcdd52dc4a846706fd9788e6.zip
fix to declare tmp variable as local
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Commands/_complete_help2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Commands/_complete_help b/Completion/Commands/_complete_help
index 593a2983e..bfbfa3222 100644
--- a/Completion/Commands/_complete_help
+++ b/Completion/Commands/_complete_help
@@ -5,7 +5,7 @@ _complete_help() {
 
   exec </dev/null	# ZLE closes stdin, which can cause errors
 
-  local _sort_tags=_help_sort_tags text i j k
+  local _sort_tags=_help_sort_tags text i j k tmp
   typeset -A help_funcs help_tags help_sfuncs help_styles
 
   compadd() { return 1 }