summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-09-03 20:49:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-09-03 20:49:30 (GMT)
commit4c3bddb64f3cd906dec0335cb6d1b6e8bf54646b (patch)
treed42740b52f16a376c87cb145dd2c4692343278e8 /contrib
parent77b063cd3528c10ec10614a4467dce8baab55dce (diff)
parentff7b83f5629c0c00910384a0f524d89d3a8bf804 (diff)
downloadgit-4c3bddb64f3cd906dec0335cb6d1b6e8bf54646b.zip
git-4c3bddb64f3cd906dec0335cb6d1b6e8bf54646b.tar.gz
git-4c3bddb64f3cd906dec0335cb6d1b6e8bf54646b.tar.bz2
Merge branch 'ti/tcsh-completion-regression-fix'
Update to the command line completion (in contrib/) for tcsh. * ti/tcsh-completion-regression-fix: completion: tcsh: Fix regression by drop of wrapper functions
Diffstat (limited to 'contrib')
-rw-r--r--contrib/completion/git-completion.tcsh5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.tcsh b/contrib/completion/git-completion.tcsh
index 4a790d8..ba797e5 100644
--- a/contrib/completion/git-completion.tcsh
+++ b/contrib/completion/git-completion.tcsh
@@ -80,8 +80,9 @@ else
COMP_CWORD=\$((\${#COMP_WORDS[@]}-1))
fi
-# Call _git() or _gitk() of the bash script, based on the first argument
-_\${1}
+# Call __git_wrap__git_main() or __git_wrap__gitk_main() of the bash script,
+# based on the first argument
+__git_wrap__\${1}_main
IFS=\$'\n'
if [ \${#COMPREPLY[*]} -eq 0 ]; then