diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2015-05-31 18:29:26 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-01 15:52:46 -0700 |
commit | 22e3b46ff95ac01add2d1e8874708b06c9e7db91 (patch) | |
tree | e623b19b6003f7a8c0ac92f885e219794c6bd17d | |
parent | send-email: drop noise comments which merely repeat what code says (diff) | |
download | tgif-22e3b46ff95ac01add2d1e8874708b06c9e7db91.tar.xz |
send-email: fix style: cuddle 'elsif' and 'else' with closing brace
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | git-send-email.perl | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/git-send-email.perl b/git-send-email.perl index 0b1868200b..1380e6e163 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -517,22 +517,15 @@ my %parse_alias = ( } }, sendmail => sub { my $fh = shift; while (<$fh>) { - if (/^\s*(?:#.*)?$/) { } - - elsif (/"/) { + if (/^\s*(?:#.*)?$/) { + } elsif (/"/) { print STDERR "warning: sendmail alias with quotes is not supported: $_\n"; - } - - elsif (/^\s|\\$/) { + } elsif (/^\s|\\$/) { print STDERR "warning: sendmail continuation line is not supported: $_\n"; - } - - elsif (/^(\S+?)\s*:\s*(.+)$/) { + } elsif (/^(\S+?)\s*:\s*(.+)$/) { my ($alias, $addr) = ($1, $2); $aliases{$alias} = [ split_addrs($addr) ]; - } - - else { + } else { print STDERR "warning: sendmail line is not recognized: $_\n"; }}}, |