]> matita.cs.unibo.it Git - helm.git/commitdiff
added too .moo files notation related statements
authorStefano Zacchiroli <zack@upsilon.cc>
Mon, 18 Jul 2005 16:26:57 +0000 (16:26 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Mon, 18 Jul 2005 16:26:57 +0000 (16:26 +0000)
helm/matita/matita.ml
helm/matita/matitaEngine.ml

index 6319921eb75710fe16633c84b74b28238513bf67..2ff07613a786b13c3288fb028538ea0499f765b3 100644 (file)
@@ -156,23 +156,16 @@ let _ =
          if script#onGoingProof () then
            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
     addDebugItem "dump coercions Db" (fun _ ->
-      List.iter (
-        fun (s,t,u) -> 
-          MatitaLog.debug (
-            UriManager.name_of_uri u ^ ":" ^ 
-            UriManager.name_of_uri s ^ " -> " ^ UriManager.name_of_uri t))
-      (CoercDb.to_list ())
-    );
+      List.iter
+        (fun (s,t,u) -> 
+          MatitaLog.debug
+            (UriManager.name_of_uri u ^ ":"
+             ^ UriManager.name_of_uri s ^ " -> " ^ UriManager.name_of_uri t))
+        (CoercDb.to_list ()));
     addDebugItem "rotate light bulbs"
       (fun _ ->
          let nb = gui#main#hintNotebook in
-         nb#goto_page ((nb#current_page + 1) mod 3));
-         (*
-    addDebugItem "print (on stdout) \"statement\" grammar entry"
-      (fun _ ->
-        Grammar.print_entry Format.std_formatter
-          (Grammar.Entry.obj CicTextualParser2.statement);
-        Format.pp_print_flush Format.std_formatter ());*)
+         nb#goto_page ((nb#current_page + 1) mod 3))
   end
 
   (** </DEBUGGING> *)
index b456bb6eb39c57f45f3b301e6590adccd275f91e..aff9144cc0cef8124fa492a9f7ea74ca7a7e4b64 100644 (file)
@@ -572,7 +572,9 @@ let eval_command opts status cmd =
   | GrafiteAst.Render _ -> assert false (* ZACK: to be removed *)
   | GrafiteAst.Dump _ -> assert false   (* ZACK: to be removed *)
   | GrafiteAst.Interpretation _
-  | GrafiteAst.Notation _ -> status
+  | GrafiteAst.Notation _ as stm ->
+      { status with moo_content_rev =
+        (GrafiteAstPp.pp_command stm ^ "\n") :: status.moo_content_rev }
   | GrafiteAst.Obj (loc,obj) ->
      let ext,name =
       match obj with