]> git.ipfire.org Git - thirdparty/git.git/commitdiff
rebase -i: add missing newline to end of message
authorPhillip Wood <phillip.wood@dunelm.org.uk>
Fri, 19 May 2017 14:32:48 +0000 (15:32 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 20 May 2017 09:25:20 +0000 (18:25 +0900)
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>
sequencer.c

index 245624682239daa79a7a5d65913b319532a33671..dc7573940ac8c992f01901845112343462728a99 100644 (file)
@@ -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;