diff options
author | Clemens Buchacher <drizzd@aon.at> | 2010-09-19 11:59:28 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-23 18:35:07 -0700 |
commit | ad14b450c0c70bfcf90de0aa19ffa5e44e402b69 (patch) | |
tree | bc8e2a67eaab16f206955616717e0389f2f87468 /diff.c | |
parent | beb172172f3dc63b4e7ad671e34826fb812281f8 (diff) | |
download | git-ad14b450c0c70bfcf90de0aa19ffa5e44e402b69.tar.gz |
do not search functions for patch ID
Visual aids, such as the function name in the hunk
header, are not necessary for the purposes of
computing a patch ID.
This is a performance optimization.
Signed-off-by: Clemens Buchacher <drizzd@aon.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3768,7 +3768,7 @@ static int diff_get_patch_id(struct diff_options *options, unsigned char *sha1) 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); } |