Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 37068:b235bde38a83
annotate: drop linenumber flag from fctx.annotate() (API)
Now linenumber=True is fast enough to be enabled by default.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Tue, 13 Mar 2018 22:18:06 +0900 |
parents | e2a0aaec7d86 |
children | b33b91ca2ec2 |
line wrap: on
line diff
--- a/mercurial/commands.py Mon Mar 12 20:45:10 2018 +0900 +++ b/mercurial/commands.py Tue Mar 13 22:18:06 2018 +0900 @@ -387,8 +387,8 @@ continue fm = rootfm.nested('lines') - lines = fctx.annotate(follow=follow, linenumber=linenumber, - skiprevs=skiprevs, diffopts=diffopts) + lines = fctx.annotate(follow=follow, skiprevs=skiprevs, + diffopts=diffopts) if not lines: fm.end() continue