comparison mercurial/hg.py @ 548:e2e963e255fd

Fix braindamage in repo.changes -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fix braindamage in repo.changes manifest hash: d34a5d36fde0ecb444ea3a5b156bea0bff51554d -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxPRxywK+sNU5EO8RAh/vAJ0buHjZ7w4Y2I6l9FnHl0prmTURrgCbBqOU cJ6wUXXPaRmQJS4ECFPCZcE= =WMC4 -----END PGP SIGNATURE-----
author mpm@selenic.com
date Thu, 30 Jun 2005 23:44:49 -0800
parents 4fc63e22b1fe
children f2442a6a5893
comparison
equal deleted inserted replaced
547:4fc63e22b1fe 548:e2e963e255fd
709 if not node2: 709 if not node2:
710 if l: 710 if l:
711 # do a full compare of any files that might have changed 711 # do a full compare of any files that might have changed
712 change = self.changelog.read(self.dirstate.parents()[0]) 712 change = self.changelog.read(self.dirstate.parents()[0])
713 mf1 = self.manifest.read(change[0]) 713 mf1 = self.manifest.read(change[0])
714 for f in lookup: 714 for f in l:
715 if fcmp(f, mf): 715 if fcmp(f, mf1):
716 c.append(f) 716 c.append(f)
717 return (c, a, d, u) 717 return (c, a, d, u)
718 718
719 # are we comparing working dir against non-tip? 719 # are we comparing working dir against non-tip?
720 # generate a pseudo-manifest for the working dir 720 # generate a pseudo-manifest for the working dir