]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Merge branch 'cb/diff-fname-optim' into maint
authorJunio C Hamano <gitster@pobox.com>
Wed, 24 Nov 2010 20:46:26 +0000 (12:46 -0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 24 Nov 2010 20:46:26 +0000 (12:46 -0800)
* cb/diff-fname-optim:
  diff: avoid repeated scanning while looking for funcname
  do not search functions for patch ID
  add rebase patch id tests

1  2 
diff.c

diff --cc diff.c
index 095a238636d6dc3cc0ed17539470e18886e3f583,6dbb4b40fa7eccff62129368ea1a59f9b29fdb83..b829c033534f0631dd1a40eb0e2e1097a6f10cf4
--- 1/diff.c
--- 2/diff.c
+++ b/diff.c
@@@ -3861,16 -3766,9 +3861,16 @@@ static int diff_get_patch_id(struct dif
                                        len2, p->two->path);
                git_SHA1_Update(&ctx, buffer, len1);
  
 +              if (diff_filespec_is_binary(p->one) ||
 +                  diff_filespec_is_binary(p->two)) {
 +                      git_SHA1_Update(&ctx, sha1_to_hex(p->one->sha1), 40);
 +                      git_SHA1_Update(&ctx, sha1_to_hex(p->two->sha1), 40);
 +                      continue;
 +              }
 +
                xpp.flags = 0;
                xecfg.ctxlen = 3;
-               xecfg.flags = XDL_EMIT_FUNCNAMES;
+               xecfg.flags = 0;
                xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
                              &xpp, &xecfg);
        }