[PATCH 04 of 15] revlog: changes in revdiff to support parentdelta

Benoit Boissinot benoit.boissinot at ens-lyon.org
Tue Jul 13 08:11:17 CDT 2010


On Mon, Jul 12, 2010 at 04:19:46PM +0530, Pradeepkumar Gayam wrote:
> @@ -1036,10 +1036,10 @@
>          # look up what we need to read
>          text = None
>          rev = self.rev(node)
> -        base = self.base(rev)
> +        base, chain = self.deltachain(rev)
>  
>          # check rev flags
> -        if self.flags(rev) & ~REVLOG_PARENTDELTA_FLGAS:
> +        if self.flags(rev) & ~REVLOG_PARENTDELTA_FLAGS:

Already pointed out by Gilles, but you should really try to get
"perfect" patches and not mix unrelated changes.

cheers,

Benoit

-- 
:wq


More information about the Mercurial-devel mailing list