aboutsummaryrefslogtreecommitdiff
path: root/proofs/tacinterp.ml
diff options
context:
space:
mode:
authorherbelin2000-09-10 20:37:37 +0000
committerherbelin2000-09-10 20:37:37 +0000
commite72024e2292a50684b7f280d6efb8fee090e2dbf (patch)
treefdba2d8c55f0c74aee8800a0e8c9aec3d3b8a584 /proofs/tacinterp.ml
parent583992b6ce38655855f6625a26046ce84c53cdc1 (diff)
Suppression de Abst
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@593 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/tacinterp.ml')
-rw-r--r--proofs/tacinterp.ml6
1 files changed, 2 insertions, 4 deletions
diff --git a/proofs/tacinterp.ml b/proofs/tacinterp.ml
index 28eaa7ad4b..b96f17af55 100644
--- a/proofs/tacinterp.ml
+++ b/proofs/tacinterp.ml
@@ -765,8 +765,7 @@ and flag_of_ast (evc,env,lfun,lmatch,goalopt) lf =
in
idents := Some
(function
- Const sp -> List.mem sp idl
- | Abst sp -> List.mem sp idl
+ | Const sp -> List.mem sp idl
| _ -> false)
else user_err_loc(loc,"flag_of_ast",
[<'sTR "Cannot specify identifiers to unfold twice">])
@@ -781,8 +780,7 @@ and flag_of_ast (evc,env,lfun,lmatch,goalopt) lf =
in
idents := Some
(function
- Const sp -> not (List.mem sp idl)
- | Abst sp -> not (List.mem sp idl)
+ | Const sp -> not (List.mem sp idl)
| _ -> false)
else user_err_loc(loc,"flag_of_ast",
[<'sTR "Cannot specify identifiers to unfold twice">])