mercurial/scmutil.py
changeset 18864 887b75fda169
parent 18863 1b70e5941ad7
child 18865 835e9dfd1e49
equal deleted inserted replaced
18863:1b70e5941ad7 18864:887b75fda169
   676     m.bad = lambda x, y: rejected.append(x)
   676     m.bad = lambda x, y: rejected.append(x)
   677 
   677 
   678     ctx = repo[None]
   678     ctx = repo[None]
   679     dirstate = repo.dirstate
   679     dirstate = repo.dirstate
   680     walkresults = dirstate.walk(m, sorted(ctx.substate), True, False)
   680     walkresults = dirstate.walk(m, sorted(ctx.substate), True, False)
   681     for abs in sorted(walkresults):
   681     for abs in walkresults:
   682         st = walkresults[abs]
   682         st = walkresults[abs]
   683         dstate = dirstate[abs]
   683         dstate = dirstate[abs]
   684         if dstate == '?' and audit_path.check(abs):
   684         if dstate == '?' and audit_path.check(abs):
   685             unknown.append(abs)
   685             unknown.append(abs)
   686         elif dstate != 'r' and not st:
   686         elif dstate != 'r' and not st: