mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
wt-status: remove extraneous newline from 'deleted:' output
This was accidentally introduced during the fixes to avoid putting newlines inside of colorized output. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
b982592d66
commit
db830b4f23
@ -78,7 +78,7 @@ static void wt_status_print_filepair(int t, struct diff_filepair *p)
|
||||
p->one->path, p->two->path);
|
||||
break;
|
||||
case DIFF_STATUS_DELETED:
|
||||
color_printf_ln(c, "deleted: %s", p->one->path); break;
|
||||
color_printf(c, "deleted: %s", p->one->path); break;
|
||||
case DIFF_STATUS_MODIFIED:
|
||||
color_printf(c, "modified: %s", p->one->path); break;
|
||||
case DIFF_STATUS_RENAMED:
|
||||
|
Loading…
Reference in New Issue
Block a user