Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 27109:a93d53f79e6e
ui: remove labeled argument from popbuffer
It was moved to pushbuffer and currently does nothing.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Tue, 24 Nov 2015 11:23:10 -0800 |
parents | c57ebef70f6f |
children | 39163708825c |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Sun Nov 22 14:18:42 2015 -0800 +++ b/mercurial/cmdutil.py Tue Nov 24 11:23:10 2015 -0800 @@ -1188,7 +1188,7 @@ if self.buffered: self.ui.pushbuffer(labeled=True) self._show(ctx, copies, matchfn, props) - self.hunk[ctx.rev()] = self.ui.popbuffer(labeled=True) + self.hunk[ctx.rev()] = self.ui.popbuffer() else: self._show(ctx, copies, matchfn, props)