mercurial/dirstate.py
changeset 6811 70ecce68df7c
parent 6807 6d68edc3217f
child 6818 6e93fbd847ef
equal deleted inserted replaced
6810:8f7a2915170a 6811:70ecce68df7c
   586                 if nn in known:
   586                 if nn in known:
   587                     continue
   587                     continue
   588                 known[nn] = 1
   588                 known[nn] = 1
   589                 if match(nf):
   589                 if match(nf):
   590                     if supported(ff, st.st_mode, verbose=True):
   590                     if supported(ff, st.st_mode, verbose=True):
   591                         yield 'f', self.normalize(nf), st
   591                         yield 'f', nn, st
   592                     elif ff in dc:
   592                     elif ff in dc:
   593                         yield 'm', nf, st
   593                         yield 'm', nf, st
   594 
   594 
   595         # step two run through anything left in the dc hash and yield
   595         # step two run through anything left in the dc hash and yield
   596         # if we haven't already seen it
   596         # if we haven't already seen it