summaryrefslogtreecommitdiff
path: root/git-send-email.perl
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2012-01-09 22:55:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-01-09 23:15:28 (GMT)
commit829a1c616967176ccd859c18a6e8ca0dda77f75a (patch)
tree40d782c981b910f9bcbb78881014fe92f66a3d38 /git-send-email.perl
parent5f4d133fca7eb3cb750f056a6fd0281ba06cd12f (diff)
downloadgit-829a1c616967176ccd859c18a6e8ca0dda77f75a.zip
git-829a1c616967176ccd859c18a6e8ca0dda77f75a.tar.gz
git-829a1c616967176ccd859c18a6e8ca0dda77f75a.tar.bz2
send-email: multiedit is a boolean config option
The sendemail.multiedit variable is meant to be a boolean. However, it is not marked as such in the code, which means we store its value literally. Thus in the do_edit function, perl ends up coercing it to a boolean value according to perl rules, not git rules. This works for "0", but "false", "no", or "off" will erroneously be interpreted as true. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-xgit-send-email.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl
index d491db9..ef30c55 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -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 = (
"bcc" => \@bcclist,
"suppresscc" => \@suppress_cc,
"envelopesender" => \$envelope_sender,
- "multiedit" => \$multiedit,
"confirm" => \$confirm,
"from" => \$sender,
"assume8bitencoding" => \$auto_8bit_encoding,