summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-10-12 23:29:52 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-10-12 23:29:52 +0000
commit35fe08345edf43644a80a5987a50937c67e7c937 (patch)
tree7309c60b551325dbd7f2390637636eebf96f7f0d /TODO
parentdd4bf078276e0ee7fac19a347ca13a7f078a2d3f (diff)
downloadbison-35fe08345edf43644a80a5987a50937c67e7c937.tar.gz
* NEWS: The -g and --graph options now output graphs in Graphviz
DOT format, not VCG format. * doc/bison.1: Likewise. * doc/bison.texinfo (Understanding, Bison Options): Likewise. * TODO: Remove Graphviz entry. * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h; remove vcg.c, vcg.h, vcg_defaults.h. * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove. * src/graphviz.c, src/graphviz.h: New files. * src/files.c (compute_output_file_names): Output .dot, not .vcg. * src/files.h: Make comment more generic. * src/main.c (main): Likewise. * src/print_graph.h: Likewise. * src/getargs.c (usage): Make usage description more generic. * src/print_graph.c: Include graphviz.h rather than vcg.h. (static_graph, fgraph): Remove. All uses changed to pass arguments instead of sharing a static var. (print_core, print_actions, print_state, print_graph): Output graphviz format rather than VCG format. * tests/.cvsignore: Remove *.vcg; add *.dot. * tests/output.at: Expect *.dot files, not *.vcg files.
Diffstat (limited to 'TODO')
-rw-r--r--TODO5
1 files changed, 2 insertions, 3 deletions
diff --git a/TODO b/TODO
index 96d5d2a4..ca610cc0 100644
--- a/TODO
+++ b/TODO
@@ -310,9 +310,8 @@ at the proper place to bison.simple. Ditto for YYACT_PROLOGUE.
I was wondering what you think about adding YYACT_PROLOGUE/EPILOGUE
to bison. If you're interested, I'll work on a patch.
-* Move to Graphviz
-Well, VCG seems really dead. Move to Graphviz instead. Also, equip
-the parser with a means to create the (visual) parse tree.
+* Better graphics
+Equip the parser with a means to create the (visual) parse tree.
-----