95721743c4
updated to version 1.8.1 (forwarded request 146761 from douglarek) OBS-URL: https://build.opensuse.org/request/show/146830 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=99
24 lines
754 B
Diff
24 lines
754 B
Diff
---
|
|
contrib/completion/git-completion.bash | 10 ++++++----
|
|
1 file changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
--- a/contrib/completion/git-completion.bash
|
|
+++ b/contrib/completion/git-completion.bash
|
|
@@ -23,10 +23,12 @@
|
|
# 3) Consider changing your PS1 to also show the current branch,
|
|
# see git-prompt.sh for details.
|
|
|
|
-case "$COMP_WORDBREAKS" in
|
|
-*:*) : great ;;
|
|
-*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
|
|
-esac
|
|
+# SUSE-specific: We trust the system is consistent and do not let individual
|
|
+# scripts play ping-pong with the global $COMP_WORDBREAKS value.
|
|
+#case "$COMP_WORDBREAKS" in
|
|
+#*:*) : great ;;
|
|
+#*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
|
|
+#esac
|
|
|
|
# __gitdir accepts 0 or 1 arguments (i.e., location)
|
|
# returns location of .git repo
|