X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fmatita.ml;h=1bfdf8ce372c49ab9cf93afa6a2ffd1c26ab8577;hb=601baed778a190b580982b588ebe49ba3f762b30;hp=cd3fe798253830c9df78ed1d63523fed8096a58c;hpb=779859f7a9e317e378d258897c289f447adea7ad;p=helm.git diff --git a/helm/software/matita/matita.ml b/helm/software/matita/matita.ml index cd3fe7982..1bfdf8ce3 100644 --- a/helm/software/matita/matita.ml +++ b/helm/software/matita/matita.ml @@ -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 )