From 7637868362ab64fe22521c645006ba70c4ef83a9 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 10 Aug 2009 00:36:33 -0700 Subject: wt-status: collect untracked files in a separate "collect" phase In a way similar to updated and locally modified files are collected. Signed-off-by: Junio C Hamano --- wt-status.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'wt-status.h') diff --git a/wt-status.h b/wt-status.h index 95f5af8902..a0e75177be 100644 --- a/wt-status.h +++ b/wt-status.h @@ -48,10 +48,11 @@ struct wt_status { FILE *fp; const char *prefix; struct string_list change; + struct string_list untracked; }; void wt_status_prepare(struct wt_status *s); void wt_status_print(struct wt_status *s); -void wt_status_collect_changes(struct wt_status *s); +void wt_status_collect(struct wt_status *s); #endif /* STATUS_H */ -- cgit v1.2.1