Mercurial > hg-stable
changeset 4160:b4bd2f3ea347
localrepo.status: fcmp gets a getnode function instead of the manifest
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Wed, 07 Mar 2007 15:25:59 -0300 |
parents | a896607d3ec3 |
children | 939de0d20a67 |
files | mercurial/localrepo.py |
diffstat | 1 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/localrepo.py Wed Mar 07 15:25:58 2007 -0300 +++ b/mercurial/localrepo.py Wed Mar 07 15:25:59 2007 -0300 @@ -881,9 +881,9 @@ If node2 is None, compare node1 with working directory. """ - def fcmp(fn, mf): + def fcmp(fn, getnode): t1 = self.wread(fn) - return self.file(fn).cmp(mf.get(fn, nullid), t1) + return self.file(fn).cmp(getnode(fn), t1) def mfmatches(node): change = self.changelog.read(node) @@ -922,8 +922,9 @@ 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) for f in lookup: - if fcmp(f, mf2): + if fcmp(f, getnode): modified.append(f) else: clean.append(f) @@ -954,10 +955,12 @@ # reasonable order mf2keys = mf2.keys() mf2keys.sort() + getnode = lambda fn: mf1.get(fn, nullid) for fn in mf2keys: if mf1.has_key(fn): if mf1.flags(fn) != mf2.flags(fn) or \ - (mf1[fn] != mf2[fn] and (mf2[fn] != "" or fcmp(fn, mf1))): + (mf1[fn] != mf2[fn] and (mf2[fn] != "" or + fcmp(fn, getnode))): modified.append(fn) elif list_clean: clean.append(fn)