Browse Source

Merge branch 'maint'

* maint:
  send-email: multiedit is a boolean config option
maint
Junio C Hamano 13 years ago
parent
commit
e1e3c0694e
  1. 2
      git-send-email.perl

2
git-send-email.perl

@ -210,6 +210,7 @@ my %config_bool_settings = ( @@ -210,6 +210,7 @@ my %config_bool_settings = (
"signedoffbycc" => [\$signed_off_by_cc, undef],
"signedoffcc" => [\$signed_off_by_cc, undef], # Deprecated
"validate" => [\$validate, 1],
"multiedit" => [\$multiedit, undef]
);

my %config_settings = (
@ -227,7 +228,6 @@ my %config_settings = ( @@ -227,7 +228,6 @@ my %config_settings = (
"bcc" => \@bcclist,
"suppresscc" => \@suppress_cc,
"envelopesender" => \$envelope_sender,
"multiedit" => \$multiedit,
"confirm" => \$confirm,
"from" => \$sender,
"assume8bitencoding" => \$auto_8bit_encoding,

Loading…
Cancel
Save