diff mbox series

[05/10] completion: bash: do not modify COMP_WORDBREAKS

Message ID 20201104174716.783348-6-felipe.contreras@gmail.com (mailing list archive)
State New, archived
Headers show
Series completion: bash: general cleanups and reorganizations | expand

Commit Message

Felipe Contreras Nov. 4, 2020, 5:47 p.m. UTC
There was no need for this once __git_reassemble_comp_words_by_ref() was
introduced.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
 contrib/completion/git-completion.bash | 5 -----
 1 file changed, 5 deletions(-)
diff mbox series

Patch

diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 9f384698f2..90202e11a4 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -45,11 +45,6 @@ 
 #     When set to "1" suggest all options, including options which are
 #     typically hidden (e.g. '--allow-empty' for 'git commit').
 
-case "$COMP_WORDBREAKS" in
-*:*) : great ;;
-*)   COMP_WORDBREAKS="$COMP_WORDBREAKS:"
-esac
-
 # Discovers the path to the git repository taking any '--git-dir=<path>' and
 # '-C <path>' options into account and stores it in the $__git_repo_path
 # variable.