diff options
author | Benoit Sigoure <tsuna@lrde.epita.fr> | 2007-11-08 19:56:28 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-09 00:00:09 -0800 |
commit | cb6c162fba3fe3e1333b48c6062c18108c41fb82 (patch) | |
tree | 4d493cf173ed68e086be8e5d66fb5c0e734b6762 /git-send-email.perl | |
parent | 13d4e6f7b7a95ae0a41f72317c9844739dcfb6f2 (diff) | |
download | git-cb6c162fba3fe3e1333b48c6062c18108c41fb82.tar.gz |
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 <tsuna@lrde.epita.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-x | git-send-email.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl index 9547cc37a1..8760cf88a5 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 = $_; |