aboutsummaryrefslogtreecommitdiff
path: root/tactics/elim.ml
diff options
context:
space:
mode:
authorherbelin2003-05-21 22:38:38 +0000
committerherbelin2003-05-21 22:38:38 +0000
commit4da48b01f420d8eccf6dcb2fea11bb4d9f8d8a86 (patch)
tree611c3f9b178632a5b610d2031dcc1609d5c58419 /tactics/elim.ml
parentcb601622d7478ca2d61a4c186d992d532f141ace (diff)
Suppression définitive de lmatch et or_metanum dans tacinterp
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4054 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/elim.ml')
-rw-r--r--tactics/elim.ml4
1 files changed, 1 insertions, 3 deletions
diff --git a/tactics/elim.ml b/tactics/elim.ml
index 9ced398dda..1dcdec03df 100644
--- a/tactics/elim.ml
+++ b/tactics/elim.ml
@@ -128,10 +128,8 @@ let decompose_or c gls =
(fun (_,t) -> is_disjunction t)
c gls
-let inj x = Genarg.AN x
let h_decompose l c =
- Refiner.abstract_tactic
- (TacDecompose (List.map inj l,c)) (decompose_these c l)
+ Refiner.abstract_tactic (TacDecompose (l,c)) (decompose_these c l)
let h_decompose_or c =
Refiner.abstract_tactic (TacDecomposeOr c) (decompose_or c)