From: Claudio Sacerdoti Coen Date: Fri, 8 Sep 2006 15:29:40 +0000 (+0000) Subject: Bug fixed: "by ... we proved ... that is equivalent to ...": the is equivalent X-Git-Tag: 0.4.95@7852~1060 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=0a4212d6515904147c7c26ff5b976739c64278de;p=helm.git Bug fixed: "by ... we proved ... that is equivalent to ...": the is equivalent to part was not considered because of a stupid typo. --- diff --git a/components/tactics/declarative.ml b/components/tactics/declarative.ml index 4a7d3e52c..4dcf38b6d 100644 --- a/components/tactics/declarative.ml +++ b/components/tactics/declarative.ml @@ -55,8 +55,8 @@ let by_term_we_proved ~dbd t ty id ty' = match ty' with None -> Tacticals.id_tac | Some ty' -> - Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None) - (fun _ metasenv ugraph -> ty,metasenv,ugraph) + Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None) + (fun _ metasenv ugraph -> ty',metasenv,ugraph) in Tacticals.thens ~start: