mercurial/logcmdutil.py
changeset 46498 3caa3698335e
parent 46497 4a012e531066
child 46675 6f4a481f182a
equal deleted inserted replaced
46497:4a012e531066 46498:3caa3698335e
   245     def showdiff(self, ui, ctx, diffopts, graphwidth=0, stat=False):
   245     def showdiff(self, ui, ctx, diffopts, graphwidth=0, stat=False):
   246         diffordiffstat(
   246         diffordiffstat(
   247             ui,
   247             ui,
   248             ctx.repo(),
   248             ctx.repo(),
   249             diffopts,
   249             diffopts,
   250             ctx.p1(),
   250             diff_parent(ctx),
   251             ctx,
   251             ctx,
   252             match=self._makefilematcher(ctx),
   252             match=self._makefilematcher(ctx),
   253             stat=stat,
   253             stat=stat,
   254             graphwidth=graphwidth,
   254             graphwidth=graphwidth,
   255             hunksfilterfn=self._makehunksfilter(ctx),
   255             hunksfilterfn=self._makehunksfilter(ctx),