| 1339 | } |
| 1340 | |
| 1341 | int git_config_color(char *dest, const char *var, const char *value) |
| 1342 | { |
| 1343 | if (!value) |
| 1344 | return config_error_nonbool(var); |
| 1345 | if (color_parse(value, dest) < 0) |
| 1346 | return -1; |
| 1347 | return 0; |
| 1348 | } |
| 1349 | |
| 1350 | /* |
| 1351 | * All source specific fields in the union, die_on_error, name and the callbacks |
no test coverage detected