Merge branch 'bc/completion-for-bash-3.0'

* bc/completion-for-bash-3.0:
  git-completion.bash: replace zsh notation that breaks bash 3.X
This commit is contained in:
Junio C Hamano 2013-07-30 09:16:36 -07:00
Родитель 8f6a3e5d71 e78095c3d0
Коммит 1ddc11a6fd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2581,7 +2581,7 @@ if [[ -n ${ZSH_VERSION-} ]]; then
--*=*|*.) ;;
*) c="$c " ;;
esac
array+=("$c")
array[$#array+1]="$c"
done
compset -P '*[=:]'
compadd -Q -S '' -p "${2-}" -a -- array && _ret=0