Skip to content
Snippets Groups Projects
Commit 5b9f1161 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

merge with stable

parents c9a3f7f5 bd63ada7
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,9 @@
return orig(ui, graph, *args, **kwargs)
def extsetup(ui):
if ui.plain('graph'):
return
if encoding.encoding != 'UTF-8':
ui.warn(_('beautifygraph: unsupported encoding, UTF-8 required\n'))
return
......@@ -89,8 +92,5 @@
'monospace narrow text required\n'))
return
if ui.plain('graph'):
return
extensions.wrapfunction(graphmod, 'outputgraph', outputprettygraph)
extensions.wrapfunction(templatekw, 'getgraphnode', getprettygraphnode)
......@@ -673,8 +673,8 @@
rev = cl.nodemap.get
if not roots:
return heads
if not heads or heads == [nullrev]:
if not heads or heads == [nullid]:
return []
# The logic operated on revisions, convert arguments early for convenience
new_heads = set(rev(n) for n in heads if n != nullid)
roots = [rev(n) for n in roots]
......@@ -677,9 +677,7 @@
return []
# The logic operated on revisions, convert arguments early for convenience
new_heads = set(rev(n) for n in heads if n != nullid)
roots = [rev(n) for n in roots]
if not heads or not roots:
return heads
# compute the area we need to remove
affected_zone = repo.revs("(%ld::%ld)", roots, new_heads)
# heads in the area are no longer heads
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment