1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-05 11:46:10 +02:00

send-email: cleanup_compose_files doesn't need a prototype

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.comReviewed-by: Avery Pennarun <apenwarr@gmail.com>
Reviewed-by: Jeff King <peff@peff.net>
>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ævar Arnfjörð Bjarmason 2010-09-30 13:43:00 +00:00 committed by Junio C Hamano
parent c438ea2a8b
commit 4bf597ee05

View File

@ -136,8 +136,6 @@ sub format_2822_time {
my $smtp;
my $auth;
sub cleanup_compose_files();
# Variables we fill in automatically, or via prompting:
my (@to,$no_to,@cc,$no_cc,@initial_cc,@bcclist,$no_bcc,@xh,
$initial_reply_to,$initial_subject,@files,
@ -1325,7 +1323,7 @@ sub send_message {
cleanup_compose_files();
sub cleanup_compose_files() {
sub cleanup_compose_files {
unlink($compose_filename, $compose_filename . ".final") if $compose;
}