mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-11 13:23:04 +00:00
graph: output foo.gv by default, instead of *.dot
That change was started in Bison 3.4. The announcement for 3.7 stated that in Bison 3.8 we would use *.gv by default. * src/files.c (compute_output_file_names): spec_graph_file defaults too *.gv. * doc/bison.texi, examples/c++/calc++/local.mk, tests/output.at: Adjust.
This commit is contained in:
@@ -421,8 +421,7 @@ compute_output_file_names (void)
|
||||
if (graph_flag)
|
||||
{
|
||||
if (! spec_graph_file)
|
||||
spec_graph_file = concat2 (all_but_tab_ext,
|
||||
304 <= required_version ? ".gv" : ".dot");
|
||||
spec_graph_file = concat2 (all_but_tab_ext, ".gv");
|
||||
output_file_name_check (&spec_graph_file, false);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user