]> git.ipfire.org Git - thirdparty/git.git/blobdiff - git-add--interactive.perl
is_ntfs_dotgit(): only verify the leading segment
[thirdparty/git.git] / git-add--interactive.perl
index daef1c14fb099261a2ee49900c1434def9d7f415..28b325d75481b74e8f7b16485e1fc18ad854161c 100755 (executable)
@@ -46,7 +46,6 @@ my ($diff_new_color) =
 my $normal_color = $repo->get_color("", "reset");
 
 my $diff_algorithm = $repo->config('diff.algorithm');
-my $diff_indent_heuristic = $repo->config_bool('diff.indentheuristic');
 my $diff_filter = $repo->config('interactive.difffilter');
 
 my $use_readkey = 0;
@@ -689,9 +688,6 @@ sub parse_diff {
        if (defined $diff_algorithm) {
                splice @diff_cmd, 1, 0, "--diff-algorithm=${diff_algorithm}";
        }
-       if ($diff_indent_heuristic) {
-               splice @diff_cmd, 1, 0, "--indent-heuristic";
-       }
        if (defined $patch_mode_revision) {
                push @diff_cmd, get_diff_reference($patch_mode_revision);
        }