bookmark: use 'applychanges' when updating from a remote
authorBoris Feld <boris.feld@octobus.net>
Mon, 10 Jul 2017 17:22:17 +0200
changeset 33484 2a8ce4e79a47
parent 33483 146c0371eadf
child 33485 505021482541
bookmark: use 'applychanges' when updating from a remote
mercurial/bookmarks.py
--- a/mercurial/bookmarks.py	Mon Jul 10 17:10:56 2017 +0200
+++ b/mercurial/bookmarks.py	Mon Jul 10 17:22:17 2017 +0200
@@ -579,10 +579,11 @@
 
     if changed:
         tr = trfunc()
+        changes = []
         for b, node, writer, msg in sorted(changed):
-            localmarks[b] = node
+            changes.append((b, node))
             writer(msg)
-        localmarks.recordchange(tr)
+        localmarks.applychanges(repo, tr, changes)
 
 def incoming(ui, repo, other):
     '''Show bookmarks incoming from other to repo