[graphviz-interest] I've been through gvpr with a graph with no name
Ryan Schmidt <[email protected]>
| Newsgroups | gmane.comp.video.graphviz |
|---|---|
| Message-ID | <[email protected]> |
I'm trying out gvpr. I wrote this script test.gvpr to print the graph's name:
BEG_G {
printf($.name);
}
Using this file test1.gv with a graph named "G"...
graph G { a }
...it prints "G" as expected.
But using this file test2.gv with an unnamed graph...
graph { a }
...it prints "%". Is that intended?
$ gvpr -V
gvpr version 2.33.20130825.0446 (20130825.0446)
_______________________________________________
[email protected]
http://lists.research.att.com/mailman/listinfo/graphviz-interest
test.gvpr
(application/octet-stream, 28 B) - not displayed
test1.gv
(text/vnd.graphviz, 14 B)
graph G { a }
test2.gv
(text/vnd.graphviz, 12 B)
graph { a }