# HG changeset patch # User Alexis S. L. Carvalho # Date 1173291960 10800 # Node ID 939de0d20a67d103a03f37b5e9ef2532e68bf13f # Parent b4bd2f3ea347fa1f0dcdcec29eb60b793922842b localrepo.status: use manifest.find on "lookup" files diff -r b4bd2f3ea347 -r 939de0d20a67 mercurial/localrepo.py --- a/mercurial/localrepo.py Wed Mar 07 15:25:59 2007 -0300 +++ b/mercurial/localrepo.py Wed Mar 07 15:26:00 2007 -0300 @@ -921,8 +921,9 @@ if compareworking: if lookup: # do a full compare of any files that might have changed - mf2 = mfmatches(self.dirstate.parents()[0]) - getnode = lambda fn: mf2.get(fn, nullid) + mnode = self.changelog.read(self.dirstate.parents()[0])[0] + getnode = lambda fn: (self.manifest.find(mnode, fn)[0] or + nullid) for f in lookup: if fcmp(f, getnode): modified.append(f)