# HG changeset patch # User Gregory Szorc # Date 2015-11-22 22:13:25 # Node ID c57ebef70f6fdaf691d245381178adb6f73c09bd # Parent 6ef17697b03d8180eff95f53edb575b1a54d704a cmdutil: pass labeled=True to pushbuffer() This doesn't yet change behavior because labeling is still performed at popbuffer time. Surprisingly, this is the only in-tree consumer that passes labeled=True. diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py --- a/mercurial/cmdutil.py +++ b/mercurial/cmdutil.py @@ -1186,7 +1186,7 @@ class changeset_printer(object): def show(self, ctx, copies=None, matchfn=None, **props): if self.buffered: - self.ui.pushbuffer() + self.ui.pushbuffer(labeled=True) self._show(ctx, copies, matchfn, props) self.hunk[ctx.rev()] = self.ui.popbuffer(labeled=True) else: