(output_edge): Don't quote linestyle arg.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 7 Mar 2005 06:35:31 +0000 (06:35 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 7 Mar 2005 06:35:31 +0000 (06:35 +0000)
src/vcg.c

index 629473c..bdf45df 100644 (file)
--- a/src/vcg.c
+++ b/src/vcg.c
@@ -584,8 +584,7 @@ output_edge (edge *e, FILE *fout)
     fprintf (fout, "\t\tlabel:\t%s\n", quote (e->label));
 
   if (e->linestyle != E_LINESTYLE)
-    fprintf (fout, "\t\tlinestyle:\t%s\n",
-            quote (get_linestyle_str (e->linestyle)));
+    fprintf (fout, "\t\tlinestyle:\t%s\n", get_linestyle_str (e->linestyle));
 
   if (e->thickness != E_THICKNESS)
     fprintf (fout, "\t\tthickness:\t%d\n", e->thickness);