Skip to content

Commit

Permalink
wt-status: remove extraneous newline from 'deleted:' output
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jeff King authored and Junio C Hamano committed Sep 14, 2006
1 parent b982592 commit db830b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wt-status.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit db830b4

Please sign in to comment.