X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2Fdump_moo.ml;h=17f24fc0afb3da92e73f70645b73d9fda9ad4dd8;hb=d0c88a989d2c41d0b816c5490d4d8c89a238cb2a;hp=045a7b91bb456ae60981a6e5065fa7a8d110d76b;hpb=0ac236dda6f80f6dc86a7f12d8c88b25e64e3251;p=helm.git diff --git a/helm/matita/dump_moo.ml b/helm/matita/dump_moo.ml index 045a7b91b..17f24fc0a 100644 --- a/helm/matita/dump_moo.ml +++ b/helm/matita/dump_moo.ml @@ -45,15 +45,11 @@ let _ = HLog.error (sprintf "Can't find moo '%s', skipping it." fname) else begin printf "%s:\n" fname; flush stdout; - let commands, metadata = GrafiteMarshal.load_moo ~fname in + let commands = GrafiteMarshal.load_moo ~fname in List.iter (fun cmd -> - printf " %s\n" (GrafiteAstPp.pp_command cmd); flush stdout) + printf " %s\n" (GrafiteAstPp.pp_cic_command cmd); flush stdout) commands; - List.iter - (fun m -> - printf " %s\n" (GrafiteAstPp.pp_metadata m); flush stdout) - metadata end) (List.rev !moos)