Merge branch 'jg/prompt-localize-temporary'

"git-prompt" (in contrib/) used a variable from the global scope,
possibly contaminating end-user's namespace.

* jg/prompt-localize-temporary:
  git-prompt.sh: make $f local to __git_eread()
This commit is contained in:
Junio C Hamano 2014-12-22 12:28:20 -08:00
Родитель 3d4eecc871 9dd70e0a0d
Коммит 35b5a8b769
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -270,7 +270,7 @@ __git_ps1_colorize_gitstring ()
__git_eread ()
{
f="$1"
local f="$1"
shift
test -r "$f" && read "$@" <"$f"
}