diff -r 4c5d7124661a -r 8299a9ad48dd hgext/graphlog.py --- a/hgext/graphlog.py Wed Jul 11 17:10:21 2012 +0200 +++ b/hgext/graphlog.py Wed Jul 11 16:47:33 2012 +0200 @@ -21,8 +21,6 @@ command = cmdutil.command(cmdtable) testedwith = 'internal' -ASCIIDATA = 'ASC' - def asciiedges(type, char, lines, seen, rev, parents): """adds edge info to changelog DAG walk suitable for ascii()""" if rev not in seen: @@ -132,7 +130,7 @@ - ui to write to - Somewhere to keep the needed state in (init to asciistate()) - Column of the current node in the set of ongoing edges. - - Type indicator of node data == ASCIIDATA. + - Type indicator of node data, usually 'C' for changesets. - Payload: (char, lines): - Character to use as node's symbol. - List of lines to display as the node's text.