Show More
@@ -133,7 +133,7 b' def _tracefile(fctx, am, limit=-1):' | |||||
133 | for f in fctx.ancestors(): |
|
133 | for f in fctx.ancestors(): | |
134 | if am.get(f.path(), None) == f.filenode(): |
|
134 | if am.get(f.path(), None) == f.filenode(): | |
135 | return f |
|
135 | return f | |
136 | if f.rev() < limit: |
|
136 | if limit >= 0 and f.linkrev() < limit and f.rev() < limit: | |
137 | return None |
|
137 | return None | |
138 |
|
138 | |||
139 | def _dirstatecopies(d): |
|
139 | def _dirstatecopies(d): |
General Comments 0
You need to be logged in to leave comments.
Login now