diff options
author | Phillip Wood <phillip.wood@dunelm.org.uk> | 2017-05-19 15:32:48 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-20 18:25:20 +0900 |
commit | d096d7f1ef81f5c52d0c9d3070ad82b66de9c981 (patch) | |
tree | 02200efb2e6d7a4a87a049bf15bee22cebbf2040 /sequencer.c | |
parent | 79a62269815264165da265eeb8a65feb47dcf671 (diff) | |
download | git-d096d7f1ef81f5c52d0c9d3070ad82b66de9c981.tar.gz |
rebase -i: add missing newline to end of messagepw/rebase-i-regression-fix
The message that's printed when auto-stashed changes are successfully
restored was missing '\n' at the end.
Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Acked-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.c')
-rw-r--r-- | sequencer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c index 2456246822..dc7573940a 100644 --- a/sequencer.c +++ b/sequencer.c @@ -1904,7 +1904,7 @@ static int apply_autostash(struct replay_opts *opts) argv_array_push(&child.args, "apply"); argv_array_push(&child.args, stash_sha1.buf); if (!run_command(&child)) - printf(_("Applied autostash.")); + printf(_("Applied autostash.\n")); else { struct child_process store = CHILD_PROCESS_INIT; |