mercurial/dirstate.py
changeset 31422 2e38a88bbc6c
parent 31278 1c97a91a18dc
child 31507 4d1dd9cf0dca
equal deleted inserted replaced
31421:5c9cda37d7f6 31422:2e38a88bbc6c
  1077         if not skipstep3 and not exact:
  1077         if not skipstep3 and not exact:
  1078             # If a dmap file is not in results yet, it was either
  1078             # If a dmap file is not in results yet, it was either
  1079             # a) not matching matchfn b) ignored, c) missing, or d) under a
  1079             # a) not matching matchfn b) ignored, c) missing, or d) under a
  1080             # symlink directory.
  1080             # symlink directory.
  1081             if not results and matchalways:
  1081             if not results and matchalways:
  1082                 visit = dmap.keys()
  1082                 visit = [f for f in dmap]
  1083             else:
  1083             else:
  1084                 visit = [f for f in dmap if f not in results and matchfn(f)]
  1084                 visit = [f for f in dmap if f not in results and matchfn(f)]
  1085             visit.sort()
  1085             visit.sort()
  1086 
  1086 
  1087             if unknown:
  1087             if unknown: