summaryrefslogtreecommitdiff
path: root/git-add--interactive.perl
diff options
context:
space:
mode:
authorStephan Beyer <s-beyer@gmx.net>2009-02-08 17:40:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-02-08 21:06:33 (GMT)
commit9aad6cbaef3c459ff4953f5a22bbbc7abfc72800 (patch)
tree94728112a631ac5150e6f83d8b2e02c5cc4c69d5 /git-add--interactive.perl
parent621f1b4bcf40f1469fc59202248df35619e33c82 (diff)
downloadgit-9aad6cbaef3c459ff4953f5a22bbbc7abfc72800.zip
git-9aad6cbaef3c459ff4953f5a22bbbc7abfc72800.tar.gz
git-9aad6cbaef3c459ff4953f5a22bbbc7abfc72800.tar.bz2
add -p: get rid of Git.pm warnings about unitialized values
After invoking git add -p I always got the warnings: Use of uninitialized value $_[3] in exec at Git.pm line 1282. Use of uninitialized value $args[2] in join or string at Git.pm line 1264. A bisect showed that these warnings occur in a301973 "add -p: print errors in separate color" the first time. They can be reproduced by setting color.ui (or color.interactive) to "auto" and unsetting color.interactive.help and color.interactive.error. I am using Perl 5.10.0. The reason of the warning is that color.interactive.error defaults to color.interactive.help which defaults to nothing in the specific codepath. It defaults to 'red bold' some lines above which could lead to the wrong assumption that it always defaults to 'red bold' now. This patch lets it default to 'red bold', blowing the warnings away. Signed-off-by: Stephan Beyer <s-beyer@gmx.net> Acked-By: Thomas Rast <trast@student.ethz.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-add--interactive.perl')
-rwxr-xr-xgit-add--interactive.perl3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-add--interactive.perl b/git-add--interactive.perl
index ec47888..5f129a4 100755
--- a/git-add--interactive.perl
+++ b/git-add--interactive.perl
@@ -14,7 +14,8 @@ my ($prompt_color, $header_color, $help_color) =
) : ();
my $error_color = ();
if ($menu_use_color) {
- my $help_color_spec = $repo->config('color.interactive.help');
+ my $help_color_spec = ($repo->config('color.interactive.help') or
+ 'red bold');
$error_color = $repo->get_color('color.interactive.error',
$help_color_spec);
}