]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/matita.ml
Coercion hiding implemented. Notes:
[helm.git] / helm / software / matita / matita.ml
index cd3fe798253830c9df78ed1d63523fed8096a58c..1bfdf8ce372c49ab9cf93afa6a2ffd1c26ab8577 100644 (file)
@@ -95,7 +95,7 @@ let _ =
     sequents_viewer#reset;
     match grafite_status#proof_status with
     | Incomplete_proof ({ stack = stack } as incomplete_proof) ->
-        sequents_viewer#load_sequents incomplete_proof;
+        sequents_viewer#load_sequents grafite_status incomplete_proof;
         (try
           script#setGoal (Some (Continuationals.Stack.find_goal stack));
           let goal =
@@ -103,7 +103,7 @@ let _ =
               None -> assert false
             | Some n -> n
           in
-           sequents_viewer#goto_sequent goal
+           sequents_viewer#goto_sequent grafite_status goal
         with Failure _ -> script#setGoal None);
     | Proof proof -> sequents_viewer#load_logo_with_qed
     | No_proof ->
@@ -118,7 +118,7 @@ let _ =
                   None -> assert false
                 | Some n -> n
               in
-               sequents_viewer#goto_sequent goal
+               sequents_viewer#goto_sequent grafite_status goal
             with Failure _ -> script#setGoal None);
          | `CommandMode -> sequents_viewer#load_logo
        )