touch: use repo.setparents() instead of repo.dirstate.setparents()
setparents() was added to localrepository class in 2012, and now we finally
have some differences between calling repo.setparents() vs
repo.dirstate.setparents(): _quick_access_* things, introduced in hg 5.3.
This patch fixes potential quick-access desync problems where repo[b'.'] would
be different from repo.dirstate.p1().
--- a/hgext3rd/evolve/cmdrewrite.py Sun Jan 26 20:57:39 2020 +0700
+++ b/hgext3rd/evolve/cmdrewrite.py Sun Jan 26 20:57:20 2020 +0700
@@ -1451,7 +1451,7 @@
phases.retractboundary(repo, tr, ctx.phase(), [new])
if ctx in repo[None].parents():
with repo.dirstate.parentchange():
- repo.dirstate.setparents(new, node.nullid)
+ repo.setparents(new, node.nullid)
@eh.command(
b'pick|grab',