summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2015-09-24 16:15:15 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2015-09-24 16:15:18 +0000
commit4c935b9f85d25999a2ff9844274827f7905380f3 (patch)
tree8f797af7a1d4efad8a8aebc10d33c75b2b623622
parent1aafc028b392ae85f6670a1c0b8cf00da975e304 (diff)
downloadzsh-4c935b9f85d25999a2ff9844274827f7905380f3.tar.gz
zsh-4c935b9f85d25999a2ff9844274827f7905380f3.zip
unposted: _hg: Declare $expl as an array
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_hg6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index dcecc8031..80a7d19c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-09-24 Daniel Shahaf <d.s@daniel.shahaf.name>
+
+ * unposted: Completion/Unix/Command/_hg: _hg: Declare $expl as
+ an array
+
2015-09-24 Christoph Mathys <eraserix@gmail.com>
* 36613: Completion/Unix/Command/_hg: _hg: extend completion
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