| 264 | } |
| 265 | |
| 266 | static void wt_longstatus_print_other_header(struct wt_status *s, |
| 267 | const char *what, |
| 268 | const char *how) |
| 269 | { |
| 270 | const char *c = color(WT_STATUS_HEADER, s); |
| 271 | status_printf_ln(s, c, "%s:", what); |
| 272 | if (!s->hints) |
| 273 | return; |
| 274 | status_printf_ln(s, c, _(" (use \"git %s <file>...\" to include in what will be committed)"), how); |
| 275 | } |
| 276 | |
| 277 | static void wt_longstatus_print_trailer(struct wt_status *s) |
| 278 | { |
no test coverage detected