Show More
@@ -109,10 +109,10 b' def findcopies(repo, m1, m2, ma, limit):' | |||
|
109 | 109 | visit = [fctx] |
|
110 | 110 | while visit: |
|
111 | 111 | fc = visit.pop() |
|
112 | if fc.path() != orig and fc.path() not in old: | |
|
113 | old[fc.path()] = 1 | |
|
112 | 114 | if fc.rev() < limit: |
|
113 | 115 | continue |
|
114 | if fc.path() != orig and fc.path() not in old: | |
|
115 | old[fc.path()] = 1 | |
|
116 | 116 | visit += fc.parents() |
|
117 | 117 | |
|
118 | 118 | old = old.keys() |
General Comments 0
You need to be logged in to leave comments.
Login now