##// END OF EJS Templates
graphlog: remove unused ASCIIDATA constant...
Patrick Mezard -
r17164:8299a9ad default
parent child Browse files
Show More
@@ -21,8 +21,6 b' cmdtable = {}'
21 command = cmdutil.command(cmdtable)
21 command = cmdutil.command(cmdtable)
22 testedwith = 'internal'
22 testedwith = 'internal'
23
23
24 ASCIIDATA = 'ASC'
25
26 def asciiedges(type, char, lines, seen, rev, parents):
24 def asciiedges(type, char, lines, seen, rev, parents):
27 """adds edge info to changelog DAG walk suitable for ascii()"""
25 """adds edge info to changelog DAG walk suitable for ascii()"""
28 if rev not in seen:
26 if rev not in seen:
@@ -132,7 +130,7 b' def ascii(ui, state, type, char, text, c'
132 - ui to write to
130 - ui to write to
133 - Somewhere to keep the needed state in (init to asciistate())
131 - Somewhere to keep the needed state in (init to asciistate())
134 - Column of the current node in the set of ongoing edges.
132 - Column of the current node in the set of ongoing edges.
135 - Type indicator of node data == ASCIIDATA.
133 - Type indicator of node data, usually 'C' for changesets.
136 - Payload: (char, lines):
134 - Payload: (char, lines):
137 - Character to use as node's symbol.
135 - Character to use as node's symbol.
138 - List of lines to display as the node's text.
136 - List of lines to display as the node's text.
General Comments 0
You need to be logged in to leave comments. Login now