diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-03-12 17:17:34 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-03-12 17:17:34 +0000 |
commit | ffe07b38293f4e10fcdd52dc4a846706fd9788e6 (patch) | |
tree | 74c2740638dab6919102567bb5e9f83a38d72de3 /Completion/Commands/_complete_help | |
parent | 055c7814643343814e2465632c16fb4914f06604 (diff) | |
download | zsh-ffe07b38293f4e10fcdd52dc4a846706fd9788e6.tar.gz zsh-ffe07b38293f4e10fcdd52dc4a846706fd9788e6.tar.xz zsh-ffe07b38293f4e10fcdd52dc4a846706fd9788e6.zip |
fix to declare tmp variable as local
Diffstat (limited to 'Completion/Commands/_complete_help')
-rw-r--r-- | Completion/Commands/_complete_help | 2 |
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 } |