mercurial/localrepo.py
changeset 16645 9a21fc2c7d32
parent 16628 3c738cb162bf
child 16646 a1dcd842ce17
equal deleted inserted replaced
16644:98a9266db803 16645:9a21fc2c7d32
  1331         If node2 is None, compare node1 with working directory.
  1331         If node2 is None, compare node1 with working directory.
  1332         """
  1332         """
  1333 
  1333 
  1334         def mfmatches(ctx):
  1334         def mfmatches(ctx):
  1335             mf = ctx.manifest().copy()
  1335             mf = ctx.manifest().copy()
       
  1336             if match.always():
       
  1337                 return mf
  1336             for fn in mf.keys():
  1338             for fn in mf.keys():
  1337                 if not match(fn):
  1339                 if not match(fn):
  1338                     del mf[fn]
  1340                     del mf[fn]
  1339             return mf
  1341             return mf
  1340 
  1342