Details
Details
- Reviewers
- None
- Group Reviewers
hg-reviewers - Commits
- rHGcb5134f2318a: revset: make commonancestors(x + x^) be ::(x^), not ::x
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
Comment Actions
Queued the series for stable, many thanks.
- # only wants the heads of the set passed in
- h = heads(repo, fullreposet(repo), x, anyorder)
- if not h:
+ startrevs = getset(repo, fullreposet(repo), x)
I've resurrected the anyorder flag though that wouldn't matter much in
practice.