dot -Tps file.dot
produces no output at all.
The contents of file.dot are below.
Input:
Comments:
# agenda.dot, 3 Dec 01
digraph G {
size = "4.5,3.0";
node[shape=box];
"in line | function | macro" -> {"in line | function"; _macro};
"in line | function" -> {_in_line; _function};
_macro[label="macro"];
_function[label="function"];
_in_line[label="in line"];
"in line | function | macro " -> {"in line"; "function | macro"};
"function | macro" -> {function; macro};
}
[erg] Due to an incorrect test, when the libgraph lexer sees
a line beginning with a #, it throws out the rest of the file rather
than the single line.
Owner: erg
Status: Fixed (20 Mar 2002)