From 43eb7674aaa06d60ac612965d2f8b1a08afc0b73 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Thu, 11 Oct 2012 16:58:03 +0200 Subject: [PATCH] graphs: stylistic changes. * src/graphviz.c (output_red): Comment and formatting changes. --- src/graphviz.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/graphviz.c b/src/graphviz.c index b37a28e0..e62ee1d4 100644 --- a/src/graphviz.c +++ b/src/graphviz.c @@ -144,12 +144,12 @@ output_red (state const *s, reductions const *reds, FILE *fout) } obstack_sgrow (&oout, "\" style=solid]\n"); - /* Then, print the reduction's representation. This most be done later - because the we need the previously determined boolean to know if this - reduction is disabled or not. */ - obstack_printf (&oout, " \"%dR%d\" " - "[style=filled shape=diamond fillcolor=%s " - "label=\"R%d\"]\n", + /* Then, print the reduction's representation. Done later since + we need to know whether this reduction is disabled. */ + obstack_printf (&oout, + " \"%dR%d\" " + "[style=filled shape=diamond fillcolor=%s " + "label=\"R%d\"]\n", source, ruleno, disabled ? "firebrick1" : "yellowgreen", ruleno); -- 2.45.2