##// END OF EJS Templates
mdiff: fix the fix...
mpm@selenic.com -
r326:23544366 default
parent child Browse files
Show More
@@ -50,7 +50,7 b' def sortdiff(a, b):'
50 50 am, bm, = la, lb
51 51
52 52 # walk over matching lines
53 while lb < lenb and la < lenb and a[la] == b[lb] :
53 while lb < lenb and la < lena and a[la] == b[lb] :
54 54 la += 1
55 55 lb += 1
56 56
General Comments 0
You need to be logged in to leave comments. Login now