From: Phillip Wood Date: Fri, 19 May 2017 14:32:48 +0000 (+0100) Subject: rebase -i: add missing newline to end of message X-Git-Tag: v2.13.1~42^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d096d7f1ef81f5c52d0c9d3070ad82b66de9c981;p=thirdparty%2Fgit.git rebase -i: add missing newline to end of message The message that's printed when auto-stashed changes are successfully restored was missing '\n' at the end. Signed-off-by: Phillip Wood Acked-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- 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;