Git.pm: fix return value of config method
commit32d8050a86f8de0253430b12711354e66a317f29
authorLea Wiemann <lewiemann@gmail.com>
Sun, 1 Jun 2008 20:34:47 +0000 (1 22:34 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 2 Jun 2008 05:28:27 +0000 (1 22:28 -0700)
tree8abbdcd2a0d1a630b735579c9bf48f101b76bde6
parent850d3a7c05b4678af21b126ad30bc60510745ef1
Git.pm: fix return value of config method

If config is called in array context, it is supposed to return all
values set for the given option key.  This works for all cases except
if there is no value set at all.  In that case, it wrongly returns
(undef) instead of ().  This fixes the return statement so that it
returns undef in scalar context but an empty array in array context.

Signed-off-by: Lea Wiemann <LeWiemann@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
perl/Git.pm