]> matita.cs.unibo.it Git - helm.git/commitdiff
do not put " around node name, otherwise names like foo:f1 are not
authorEnrico Tassi <enrico.tassi@inria.fr>
Wed, 28 Oct 2009 12:19:04 +0000 (12:19 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Wed, 28 Oct 2009 12:19:04 +0000 (12:19 +0000)
accepted

helm/software/components/extlib/graphvizPp.ml

index 82fa9807de15a786b8bd7e338ca82af3348976e5..ed5bbdc54c69c1d1557a43635d72bd4c2a4f1ca3 100644 (file)
@@ -69,7 +69,7 @@ module Dot =
 
     let node = node ~quote:true
     let edge name1 name2 ?(attrs = []) fmt =
-      fprintf fmt "@[<hov2>\"%s\" ->@ \"%s\"@ [" name1 name2;
+      fprintf fmt "@[<hov2>%s ->@ %s@ [" name1 name2;
       attributes attrs fmt;
       fprintf fmt "];@]@,"
     let raw s fmt = pp_print_string fmt s