diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2012-05-19 04:41:34 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-05-20 14:47:54 -0700 |
commit | 7f02f3d7ecdda983f229b16f80e7c494fb2d3510 (patch) | |
tree | 485c4466c4e77a7e8dd5864fee58a2a55d43e4da /t/t9902-completion.sh | |
parent | 6b179adfe93d13c2f993668cd12eec52860486ac (diff) | |
download | git-7f02f3d7ecdda983f229b16f80e7c494fb2d3510.tar.gz |
completion: rename internal helpers _git and _gitk
Would be useful to provide backwards compatibility for _git. Also, zsh
completion uses _git, and it cannot be changed.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9902-completion.sh')
-rwxr-xr-x | t/t9902-completion.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh index 0f09fd6109..9a80c60945 100755 --- a/t/t9902-completion.sh +++ b/t/t9902-completion.sh @@ -63,7 +63,7 @@ run_completion () local _cword _words=( $1 ) (( _cword = ${#_words[@]} - 1 )) - __git_wrap_git && print_comp + __git_wrap_main_git && print_comp } test_completion () |