X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fmatita.ml;h=1bfdf8ce372c49ab9cf93afa6a2ffd1c26ab8577;hb=c83721701dbbd44d3d547fdec6c4a5658322f424;hp=cd3fe798253830c9df78ed1d63523fed8096a58c;hpb=c3fc204cc02f1031b5d17fb0f2be1fc01e5c452f;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 )