Show More
@@ -305,7 +305,7 class dirstate(object): | |||
|
305 | 305 | nd = util.normpath(top[len(self.root) + 1:]) |
|
306 | 306 | if nd == '.': nd = '' |
|
307 | 307 | for f in names: |
|
308 | np = os.path.join(nd, f) | |
|
308 | np = util.pconvert(os.path.join(nd, f)) | |
|
309 | 309 | if seen(np): |
|
310 | 310 | continue |
|
311 | 311 | p = os.path.join(top, f) |
@@ -316,12 +316,12 class dirstate(object): | |||
|
316 | 316 | if statmatch(ds, st): |
|
317 | 317 | work.append(p) |
|
318 | 318 | if statmatch(np, st) and np in dc: |
|
319 |
yield 'm', |
|
|
319 | yield 'm', np, st | |
|
320 | 320 | elif statmatch(np, st): |
|
321 | 321 | if self.supported_type(np, st): |
|
322 |
yield 'f', |
|
|
322 | yield 'f', np, st | |
|
323 | 323 | elif np in dc: |
|
324 |
yield 'm', |
|
|
324 | yield 'm', np, st | |
|
325 | 325 | |
|
326 | 326 | known = {'.hg': 1} |
|
327 | 327 | def seen(fn): |
General Comments 0
You need to be logged in to leave comments.
Login now