Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  xdiff: optimise for no whitespace difference when ignoring whitespace.
  • Loading branch information
Junio C Hamano committed Jul 6, 2010
2 parents 869d588 + b4cf0f1 commit 5b5275f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xdiff/xutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,10 @@ int xdl_recmatch(const char *l1, long s1, const char *l2, long s2, long flags)
{
int i1, i2;

if (s1 == s2 && !memcmp(l1, l2, s1))
return 1;
if (!(flags & XDF_WHITESPACE_FLAGS))
return s1 == s2 && !memcmp(l1, l2, s1);
return 0;

i1 = 0;
i2 = 0;
Expand Down

0 comments on commit 5b5275f

Please sign in to comment.