]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/dump_moo.ml
Added a new section on the logical library.
[helm.git] / helm / matita / dump_moo.ml
index 43d11f9bc63ff9f8c147c59d02f147c3bfba13e7..17f24fc0afb3da92e73f70645b73d9fda9ad4dd8 100644 (file)
@@ -42,14 +42,14 @@ let _ =
   List.iter
     (fun fname ->
       if not (Sys.file_exists fname) then
-        MatitaLog.error (sprintf "Can't find moo '%s', skipping it." fname)
+        HLog.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 = GrafiteMarshal.load_moo ~fname in
         List.iter
           (fun cmd ->
-            printf "  %s\n" (GrafiteAstPp.pp_command cmd); flush stdout)
-          commands
+            printf "  %s\n" (GrafiteAstPp.pp_cic_command cmd); flush stdout)
+          commands;
       end)
     (List.rev !moos)