| 1214 | } |
| 1215 | |
| 1216 | static void handle_untracked_files_arg(struct wt_status *s) |
| 1217 | { |
| 1218 | enum untracked_status_type u; |
| 1219 | |
| 1220 | if (!untracked_files_arg) |
| 1221 | return; /* default already initialized */ |
| 1222 | |
| 1223 | u = parse_untracked_setting_name(untracked_files_arg); |
| 1224 | if (u == SHOW_UNTRACKED_FILES_ERROR) |
| 1225 | die(_("Invalid untracked files mode '%s'"), |
| 1226 | untracked_files_arg); |
| 1227 | s->show_untracked_files = u; |
| 1228 | } |
| 1229 | |
| 1230 | static const char *read_commit_message(const char *name) |
| 1231 | { |
no test coverage detected