1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-23 11:26:09 +02: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:
Jeff King 2006-09-13 18:37:14 -04:00 committed by Junio C Hamano
parent b982592d66
commit db830b4f23

View File

@ -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: