author | Junio C Hamano <gitster@pobox.com> | |
Wed, 24 Nov 2010 20:46:26 +0000 (12:46 -0800) | ||
committer | Junio 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
diff: avoid repeated scanning while looking for funcname
do not search functions for patch ID
add rebase patch id tests
1 | 2 | |||
---|---|---|---|---|
diff.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc diff.c
index 095a238636d6dc3cc0ed17539470e18886e3f583,6dbb4b40fa7eccff62129368ea1a59f9b29fdb83..b829c033534f0631dd1a40eb0e2e1097a6f10cf4
+++ b/diff.c
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);
}