diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-06-13 11:47:11 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-06-13 11:47:11 -0700 |
commit | 2cf4cfa7e9e63e3d0df24f87076ed9e221e20b9a (patch) | |
tree | 9c4d6d05dded8637ca221d1c308057d51f3cb30d /t | |
parent | 1dad5c14f993dcd2d38ce7eb7ecedb624732d692 (diff) | |
parent | 93b291e07169b3787a39d4cccd3e4f9730b029d2 (diff) | |
download | git-2cf4cfa7e9e63e3d0df24f87076ed9e221e20b9a.tar.gz |
Merge branch 'fc/git-complete-helper-fix'
* fc/git-complete-helper-fix:
completion: put main git and gitk completion functions back into git namespace
Diffstat (limited to 't')
-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 9a80c60945..256e6a0b3f 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_main_git && print_comp + __git_wrap__git_main && print_comp } test_completion () |