refactor get_textconv to not require diff_filespec
authorJeff King <peff@peff.net>
Mon, 23 May 2011 20:30:14 +0000 (16:30 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 23 May 2011 22:46:02 +0000 (15:46 -0700)
This function actually does two things:

1. Load the userdiff driver for the filespec.

2. Decide whether the driver has a textconv component, and
initialize the textconv cache if applicable.

Only part (1) requires the filespec object, and some callers
may not have a filespec at all. So let's split them it into
two functions, and put part (2) with the userdiff code,
which is a better fit.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found