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 <phillip.wood@dunelm.org.uk> Acked-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Phillip Wood committed May 19, 2017 at 15:32 UTC d096d7f1ef81f5c52d0c9d3070ad82b66de9c981
1 file changed +1 -1
sequencer.c
+1 -1
@@ -1904,7 +1904,7 @@ static int apply_autostash(struct replay_opts *opts)
1904 argv_array_push(&child.args, "apply");
1905 argv_array_push(&child.args, stash_sha1.buf);
1906 if (!run_command(&child))
1907 - printf(_("Applied autostash."));
1907 + printf(_("Applied autostash.\n"));
1908 else {
1909 struct child_process store = CHILD_PROCESS_INIT;
1910