Merge branch 'mg/maint-send-email-lazy-editor'

* mg/maint-send-email-lazy-editor:
  send-email: lazily assign editor variable
This commit is contained in:
Junio C Hamano 2010-04-03 12:28:42 -07:00
Родитель 4de113cdf5 0ce142c944
Коммит aa8b12505b
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -166,9 +166,12 @@ my $compose_filename;
# Handle interactive edition of files.
my $multiedit;
my $editor = Git::command_oneline('var', 'GIT_EDITOR');
my $editor;
sub do_edit {
if (!defined($editor)) {
$editor = Git::command_oneline('var', 'GIT_EDITOR');
}
if (defined($multiedit) && !$multiedit) {
map {
system('sh', '-c', $editor.' "$@"', $editor, $_);