##// END OF EJS Templates
cmdutil: pass labeled=True to pushbuffer()...
Gregory Szorc -
r27107:c57ebef7 default
parent child Browse files
Show More
@@ -1186,7 +1186,7 b' class changeset_printer(object):'
1186
1186
1187 def show(self, ctx, copies=None, matchfn=None, **props):
1187 def show(self, ctx, copies=None, matchfn=None, **props):
1188 if self.buffered:
1188 if self.buffered:
1189 self.ui.pushbuffer()
1189 self.ui.pushbuffer(labeled=True)
1190 self._show(ctx, copies, matchfn, props)
1190 self._show(ctx, copies, matchfn, props)
1191 self.hunk[ctx.rev()] = self.ui.popbuffer(labeled=True)
1191 self.hunk[ctx.rev()] = self.ui.popbuffer(labeled=True)
1192 else:
1192 else:
General Comments 0
You need to be logged in to leave comments. Login now