##// END OF EJS Templates
histedit: remove "name" parameter from cleanupnode functions...
Jun Wu -
r33348:72c25a91 default
parent child Browse files
Show More
@@ -1171,13 +1171,13 b' def _finishhistedit(ui, repo, state):'
1171 1171 for n in succs[1:]:
1172 1172 ui.debug(m % node.short(n))
1173 1173
1174 safecleanupnode(ui, repo, 'temp', tmpnodes)
1174 safecleanupnode(ui, repo, tmpnodes)
1175 1175
1176 1176 if not state.keep:
1177 1177 if mapping:
1178 1178 movebookmarks(ui, repo, mapping, state.topmost, ntm)
1179 1179 # TODO update mq state
1180 safecleanupnode(ui, repo, 'replaced', mapping)
1180 safecleanupnode(ui, repo, mapping)
1181 1181
1182 1182 state.clear()
1183 1183 if os.path.exists(repo.sjoin('undo')):
@@ -1207,8 +1207,8 b' def _aborthistedit(ui, repo, state):'
1207 1207 if repo.unfiltered().revs('parents() and (%n or %ln::)',
1208 1208 state.parentctxnode, leafs | tmpnodes):
1209 1209 hg.clean(repo, state.topmost, show_stats=True, quietempty=True)
1210 cleanupnode(ui, repo, 'created', tmpnodes)
1211 cleanupnode(ui, repo, 'temp', leafs)
1210 cleanupnode(ui, repo, tmpnodes)
1211 cleanupnode(ui, repo, leafs)
1212 1212 except Exception:
1213 1213 if state.inprogress():
1214 1214 ui.warn(_('warning: encountered an exception during histedit '
@@ -1589,7 +1589,7 b' def movebookmarks(ui, repo, mapping, old'
1589 1589 finally:
1590 1590 release(tr, lock)
1591 1591
1592 def cleanupnode(ui, repo, name, nodes):
1592 def cleanupnode(ui, repo, nodes):
1593 1593 """strip a group of nodes from the repository
1594 1594
1595 1595 The set of node to strip may contains unknown nodes."""
@@ -1609,7 +1609,7 b' def cleanupnode(ui, repo, name, nodes):'
1609 1609 # This would reduce bundle overhead
1610 1610 repair.strip(ui, repo, c)
1611 1611
1612 def safecleanupnode(ui, repo, name, nodes):
1612 def safecleanupnode(ui, repo, nodes):
1613 1613 """strip or obsolete nodes
1614 1614
1615 1615 nodes could be either a set or dict which maps to replacements.
@@ -1635,7 +1635,7 b' def safecleanupnode(ui, repo, name, node'
1635 1635 if markers:
1636 1636 obsolete.createmarkers(repo, markers, operation='histedit')
1637 1637 else:
1638 return cleanupnode(ui, repo, name, nodes)
1638 return cleanupnode(ui, repo, nodes)
1639 1639
1640 1640 def stripwrapper(orig, ui, repo, nodelist, *args, **kwargs):
1641 1641 if isinstance(nodelist, str):
General Comments 0
You need to be logged in to leave comments. Login now