]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/matitacLib.ml
fixed a finalization issue for connections closed twice
[helm.git] / helm / matita / matitacLib.ml
index 0eb29777617e7e9cbae4310b5a1b85f03dcd03fb..9cc063271d801902cd5375661e5a850458fe9424 100644 (file)
@@ -88,7 +88,7 @@ let fname () =
   Arg.parse arg_spec add_script usage;
   match !acc with
   | [x] -> x
-  | _ -> prerr_endline usage; exit 1
+  | _ -> print_endline usage; exit 1
 
 let pp_ocaml_mode () = 
   MatitaLog.message "";
@@ -149,7 +149,9 @@ let dump_moo_to_file file moo =
  let os = open_out (MatitaMisc.obj_file_of_script file) in
  let output s = output_string os s in
  output "(* GENERATED FILE: DO NOT EDIT! *)\n\n";
- List.iter output (List.rev moo);
+ List.iter
+  (fun cmd -> output (GrafiteAstPp.pp_command cmd ^ "\n"))
+  (List.rev moo);
  close_out os
   
 let main ~mode =