aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authornotin2007-03-13 14:45:21 +0000
committernotin2007-03-13 14:45:21 +0000
commitd3ac30ae99a9e56bdf0718487a4607e1fae79242 (patch)
tree4bb58051a6162630439c3f39d90971980444feba /tactics
parent0b05b8de1bcb0716e1c6b19d265027da36b1c3cc (diff)
Correction bug #1439 (comportement de replace by)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9699 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r--tactics/equality.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/equality.ml b/tactics/equality.ml
index a9a869d8f7..9ca5dabdcb 100644
--- a/tactics/equality.ml
+++ b/tactics/equality.ml
@@ -189,7 +189,7 @@ let multi_replace clause c2 c1 unsafe try_prove_eq_opt gl =
let try_prove_eq =
match try_prove_eq_opt with
| None -> tclIDTAC
- | Some tac -> tclTRY (tclCOMPLETE tac)
+ | Some tac -> tclCOMPLETE tac
in
let t1 = pf_apply get_type_of gl c1
and t2 = pf_apply get_type_of gl c2 in