diff options
author | Jeff King <peff@peff.net> | 2009-12-07 00:17:15 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-12-07 00:40:22 -0800 |
commit | 4a7cc2fdf39c90e6eff84d30b86490cac2c33705 (patch) | |
tree | beb918d27e1a49d4df08ad47eb0e19a66e195b47 /wt-status.h | |
parent | 3fe2a894e98566dd91e69982552454cfb381cf24 (diff) | |
download | git-4a7cc2fdf39c90e6eff84d30b86490cac2c33705.tar.gz git-4a7cc2fdf39c90e6eff84d30b86490cac2c33705.tar.xz |
status: disable color for porcelain format
The porcelain format is identical to the shortstatus format,
except that it should not respect any user configuration,
including color.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.h')
-rw-r--r-- | wt-status.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wt-status.h b/wt-status.h index 39c9aef7a..a4bddcf8d 100644 --- a/wt-status.h +++ b/wt-status.h @@ -57,5 +57,6 @@ void wt_status_print(struct wt_status *s); void wt_status_collect(struct wt_status *s); void wt_shortstatus_print(struct wt_status *s, int null_termination); +void wt_porcelain_print(struct wt_status *s, int null_termination); #endif /* STATUS_H */ |