aboutsummaryrefslogtreecommitdiff
path: root/tactics/tacsubst.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2016-02-29 11:35:34 +0100
committerPierre-Marie Pédrot2016-02-29 13:24:45 +0100
commit6c4fcb156dea5a71fd227606b87333ae00aacb69 (patch)
treea8db7db16d1cec0d6ac21118d704874e0a45000b /tactics/tacsubst.ml
parent7dd8c2bf4747c94be6f18d7fdd0e3b593f560a2f (diff)
Moving the "generalize dependent" tactic to TACTIC EXTEND.
Diffstat (limited to 'tactics/tacsubst.ml')
-rw-r--r--tactics/tacsubst.ml1
1 files changed, 0 insertions, 1 deletions
diff --git a/tactics/tacsubst.ml b/tactics/tacsubst.ml
index 50730eaea1..36e0b4278e 100644
--- a/tactics/tacsubst.ml
+++ b/tactics/tacsubst.ml
@@ -154,7 +154,6 @@ let rec subst_atomic subst (t:glob_atomic_tactic_expr) = match t with
TacAssert (b,Option.map (subst_tactic subst) otac,na,subst_glob_constr subst c)
| TacGeneralize cl ->
TacGeneralize (List.map (on_fst (subst_constr_with_occurrences subst))cl)
- | TacGeneralizeDep c -> TacGeneralizeDep (subst_glob_constr subst c)
| TacLetTac (id,c,clp,b,eqpat) ->
TacLetTac (id,subst_glob_constr subst c,clp,b,eqpat)