| 3760 | } |
| 3761 | |
| 3762 | struct userdiff_driver *get_textconv(struct repository *r, |
| 3763 | struct diff_filespec *one) |
| 3764 | { |
| 3765 | if (!DIFF_FILE_VALID(one)) |
| 3766 | return NULL; |
| 3767 | |
| 3768 | diff_filespec_load_driver(one, r->index); |
| 3769 | return userdiff_get_textconv(r, one->driver); |
| 3770 | } |
| 3771 | |
| 3772 | static struct string_list *additional_headers(struct diff_options *o, |
| 3773 | const char *path) |
no test coverage detected