From b7666378f5cb5e9587d3c918f0cdcaf6f8aca5c7 Mon Sep 17 00:00:00 2001 From: "Joel E. Denny" Date: Fri, 30 Apr 2010 19:50:34 -0400 Subject: [PATCH] In DOT output, convert from "/*" comments to "//" comments. This handles the possibility that a "*/" might appear in variable portions of those comments at some point in the future. * src/graphviz.c (start_graph): Implement. --- ChangeLog | 7 +++++++ src/graphviz.c | 8 +++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1bc9ec71..49040852 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-05-01 Joel E. Denny + + In DOT output, convert from "/*" comments to "//" comments. + This handles the possibility that a "*/" might appear in + variable portions of those comments at some point in the future. + * src/graphviz.c (start_graph): Implement. + 2010-04-30 Joel E. Denny Document that undefined %prec identifier warnings will remain. diff --git a/src/graphviz.c b/src/graphviz.c index 13f279f3..5eefcbf2 100644 --- a/src/graphviz.c +++ b/src/graphviz.c @@ -40,11 +40,9 @@ void start_graph (FILE *fout) { fprintf (fout, - _("/*\n" - " * Generated by %s.\n" - " * Report bugs to <%s>.\n" - " * Home page: <%s>.\n" - " */\n" + _("// Generated by %s.\n" + "// Report bugs to <%s>.\n" + "// Home page: <%s>.\n" "\n"), PACKAGE_STRING, PACKAGE_BUGREPORT, -- 2.45.2