From 4c935b9f85d25999a2ff9844274827f7905380f3 Mon Sep 17 00:00:00 2001 From: Daniel Shahaf Date: Thu, 24 Sep 2015 16:15:15 +0000 Subject: unposted: _hg: Declare $expl as an array --- Completion/Unix/Command/_hg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Completion/Unix/Command/_hg') diff --git a/Completion/Unix/Command/_hg b/Completion/Unix/Command/_hg index 2db5c55a5..9dd023653 100644 --- a/Completion/Unix/Command/_hg +++ b/Completion/Unix/Command/_hg @@ -163,21 +163,21 @@ _hg_revrange() { } _hg_tags_internal() { - local expl + local -a expl typeset -a hgtags hgtags=( ${(f)"$(_hg_cmd tags -q 2>/dev/null)"} ) _wanted tags expl 'tags' compadd -a - hgtags } _hg_bookmarks_internal() { - local expl + local -a expl typeset -a hgbookmarks hgbookmarks=( ${(f)"$(_hg_cmd bookmarks -q 2>/dev/null)"} ) _wanted bookmarks expl 'bookmarks' compadd -a - hgbookmarks } _hg_branches_internal() { - local expl + local -a expl typeset -a hgbranches hgbranches=( ${(f)"$(_hg_cmd branches -q 2>/dev/null)"} ) _wanted branches expl 'branches' compadd -a - hgbranches -- cgit 1.4.1