equal
deleted
inserted
replaced
2664 del copy[dst] |
2664 del copy[dst] |
2665 |
2665 |
2666 prefetchmatch = scmutil.matchfiles( |
2666 prefetchmatch = scmutil.matchfiles( |
2667 repo, list(modifiedset | addedset | removedset) |
2667 repo, list(modifiedset | addedset | removedset) |
2668 ) |
2668 ) |
2669 scmutil.prefetchfiles(repo, [ctx1.rev(), ctx2.rev()], prefetchmatch) |
2669 revmatches = [ |
|
2670 (ctx1.rev(), prefetchmatch), |
|
2671 (ctx2.rev(), prefetchmatch), |
|
2672 ] |
|
2673 scmutil.prefetchfiles(repo, revmatches) |
2670 |
2674 |
2671 def difffn(opts, losedata): |
2675 def difffn(opts, losedata): |
2672 return trydiff( |
2676 return trydiff( |
2673 repo, |
2677 repo, |
2674 revs, |
2678 revs, |