Skip to content

Commit d096d7f

Browse files
phillipwoodgitster
authored andcommitted
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 <[email protected]> Acked-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 79a6226 commit d096d7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sequencer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1904,7 +1904,7 @@ static int apply_autostash(struct replay_opts *opts)
19041904
argv_array_push(&child.args, "apply");
19051905
argv_array_push(&child.args, stash_sha1.buf);
19061906
if (!run_command(&child))
1907-
printf(_("Applied autostash."));
1907+
printf(_("Applied autostash.\n"));
19081908
else {
19091909
struct child_process store = CHILD_PROCESS_INIT;
19101910

0 commit comments

Comments
 (0)