| 1441 | define_list_config_array_extra(color_status_slots, {"added"}); |
| 1442 | |
| 1443 | static int parse_status_slot(const char *slot) |
| 1444 | { |
| 1445 | if (!strcasecmp(slot, "added")) |
| 1446 | return WT_STATUS_UPDATED; |
| 1447 | |
| 1448 | return LOOKUP_CONFIG(color_status_slots, slot); |
| 1449 | } |
| 1450 | |
| 1451 | static int git_status_config(const char *k, const char *v, |
| 1452 | const struct config_context *ctx, void *cb) |