diff options
-rwxr-xr-x | git-send-email.perl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git-send-email.perl b/git-send-email.perl index f47188888d..90b777a9fa 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -136,7 +136,6 @@ my $have_mail_address = eval { require Mail::Address; 1 }; my $smtp; my $auth; -sub unique_email_list(@); sub cleanup_compose_files(); # Variables we fill in automatically, or via prompting: @@ -1332,7 +1331,7 @@ sub cleanup_compose_files() { $smtp->quit if $smtp; -sub unique_email_list(@) { +sub unique_email_list { my %seen; my @emails; |