| 285 | } |
| 286 | |
| 287 | int git_diff_heuristic_config(const char *var, const char *value, |
| 288 | void *cb UNUSED) |
| 289 | { |
| 290 | if (!strcmp(var, "diff.indentheuristic")) |
| 291 | diff_indent_heuristic = git_config_bool(var, value); |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | static int parse_color_moved(const char *arg) |
| 296 | { |
no test coverage detected