diff options
author | Jeff King <peff@peff.net> | 2006-09-13 18:37:14 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-13 23:37:57 -0700 |
commit | db830b4f233bd45e28592fbf59395bc98d79dec5 (patch) | |
tree | ef914a7f787a19c355954a18fdf3fb2b1cea4b17 /wt-status.c | |
parent | b982592d6677aebff646a0e68b1075804ca3955f (diff) | |
download | git-db830b4f233bd45e28592fbf59395bc98d79dec5.tar.gz |
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>
Diffstat (limited to 'wt-status.c')
-rw-r--r-- | wt-status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c index c644331b12..4b74e68584 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: |