ll-merge.c: refactor `read_merge_config()` to use `git_config_string()`
commit6ea358f784a5d8823565a8574d8ed914e51096f4
authorTanay Abhra <tanayabh@gmail.com>
Wed, 13 Aug 2014 12:43:04 +0000 (13 18:13 +0530)
committerJunio C Hamano <gitster@pobox.com>
Wed, 13 Aug 2014 19:36:21 +0000 (13 12:36 -0700)
treefe0c013813343fdb0ea31e6d10595aece4feff27
parent536900e5b24f8341bcaf2a26371fcd3ca417eef9
ll-merge.c: refactor `read_merge_config()` to use `git_config_string()`

There is one slight behavior change, previously "merge.default"
silently ignored a NULL value and didn't raise any error. But,
in the same function, all other values raise an error on a NULL
value. So to conform with other call sites in Git, a NULL value
for "merge.default" raises an error.

The the new config-set API is not very useful here, because much of
the function is dedicated to processing "merge.<name>.variable",
which the new API does not handle well.  If it were for variables
like, "merge.summary", "merge.tool", and "merge.verbosity", we could
use the new API.

Signed-off-by: Tanay Abhra <tanayabh@gmail.com>
Reviewed-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
ll-merge.c