From 0d6b21e781be54423e85e3968178a74bb8b90969 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 24 Apr 2016 12:31:44 -0700 Subject: send-email: fix grammo in the prompt that asks e-mail recipients The message, which dates back to the very original version 83b24437 made in 2005, sounds clumsy, grammatically incorrect, and is hard to understand. Reported-by: John Darrington Signed-off-by: Junio C Hamano diff --git a/git-send-email.perl b/git-send-email.perl index e1e9b14..9bccf7a 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -785,9 +785,10 @@ if (!defined $sender) { # But it's a no-op to run sanitize_address on an already sanitized address. $sender = sanitize_address($sender); +my $to_whom = "To whom should the emails be sent (if anyone)?"; my $prompting = 0; if (!@initial_to && !defined $to_cmd) { - my $to = ask("Who should the emails be sent to (if any)? ", + my $to = ask("$to_whom ", default => "", valid_re => qr/\@.*\./, confirm_only => 1); push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later @@ -885,7 +886,7 @@ sub validate_address { cleanup_compose_files(); exit(0); } - $address = ask("Who should the email be sent to (if any)? ", + $address = ask("$to_whom ", default => "", valid_re => qr/\@.*\./, confirm_only => 1); } -- cgit v0.10.2-6-g49f6