aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-03-01 10:54:38 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-03-01 10:54:38 +0000
commit318110f9f690689a33b432a809e6dc62292c46e1 (patch)
tree875fe633babfae5d11f74fe9d9f91daa00a10438
parenta412c028eb7c8400e8c4f45058beafab1c08f84f (diff)
Protection d'un 'clear' qui peut etre dependant
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5403 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--contrib/omega/coq_omega.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/omega/coq_omega.ml b/contrib/omega/coq_omega.ml
index 9ac5b2205..3ab5a6255 100644
--- a/contrib/omega/coq_omega.ml
+++ b/contrib/omega/coq_omega.ml
@@ -1316,7 +1316,7 @@ let normalize_equation id flag theorem pos t t1 t2 (tactic,defs) =
let shift_left =
tclTHEN
(generalize_tac [mkApp (theorem, [| t1; t2; mkVar id |]) ])
- (clear [id])
+ (tclTRY (clear [id]))
in
if tac <> [] then
let id' = new_identifier () in