]> git.saurik.com Git - bison.git/commit - ChangeLog
* NEWS: The -g and --graph options now output graphs in Graphviz
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 12 Oct 2006 23:29:52 +0000 (23:29 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 12 Oct 2006 23:29:52 +0000 (23:29 +0000)
commit35fe08345edf43644a80a5987a50937c67e7c937
tree7309c60b551325dbd7f2390637636eebf96f7f0d
parentdd4bf078276e0ee7fac19a347ca13a7f078a2d3f
* 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.
19 files changed:
ChangeLog
NEWS
TODO
doc/bison.1
doc/bison.texinfo
src/Makefile.am
src/files.c
src/files.h
src/getargs.c
src/graphviz.c [new file with mode: 0644]
src/graphviz.h [new file with mode: 0644]
src/main.c
src/print_graph.c
src/print_graph.h
src/vcg.c [deleted file]
src/vcg.h [deleted file]
src/vcg_defaults.h [deleted file]
tests/.cvsignore
tests/output.at