From: Benoit Sigoure Date: Thu, 8 Nov 2007 18:56:28 +0000 (+0100) Subject: git-send-email: Change the prompt for the subject of the initial message. X-Git-Tag: v1.5.3.6~26 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=cb6c162fba3fe3e1333b48c6062c18108c41fb82;p=git.git git-send-email: Change the prompt for the subject of the initial message. I never understood what this prompt was asking for until I read the actual source code. I think this wording is much more understandable. Signed-off-by: Benoit Sigoure Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index 9547cc37a..8760cf88a 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -303,7 +303,7 @@ sub expand_aliases { if (!defined $initial_subject && $compose) { do { - $_ = $term->readline("What subject should the emails start with? ", + $_ = $term->readline("What subject should the initial email start with? ", $initial_subject); } while (!defined $_); $initial_subject = $_;