X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2Fdump_moo.ml;h=14dea3472a96ded9519d09d9fc6e65681e0a628b;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=43d11f9bc63ff9f8c147c59d02f147c3bfba13e7;hpb=b2f2e47efe1e01df81cb7659c30eeb76f1f830da;p=helm.git diff --git a/helm/matita/dump_moo.ml b/helm/matita/dump_moo.ml index 43d11f9bc..14dea3472 100644 --- a/helm/matita/dump_moo.ml +++ b/helm/matita/dump_moo.ml @@ -45,11 +45,15 @@ let _ = MatitaLog.error (sprintf "Can't find moo '%s', skipping it." fname) else begin printf "%s:\n" fname; flush stdout; - let commands = MatitaMoo.load_moo ~fname in + let commands, metadata = MatitaMoo.load_moo ~fname in List.iter (fun cmd -> printf " %s\n" (GrafiteAstPp.pp_command cmd); flush stdout) - commands + commands; + List.iter + (fun m -> + printf " %s\n" (GrafiteAstPp.pp_metadata m); flush stdout) + metadata end) (List.rev !moos)