From: Jeff King Date: Wed, 13 Sep 2006 22:37:14 +0000 (-0400) Subject: wt-status: remove extraneous newline from 'deleted:' output X-Git-Tag: v1.4.3-rc1~84^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=db830b4f233bd45e28592fbf59395bc98d79dec5;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/wt-status.c b/wt-status.c index c644331b1..4b74e6858 100644 --- a/wt-status.c +++ b/wt-status.c @@ -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: