diff options
author | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2014-11-05 00:56:29 +0100 |
---|---|---|
committer | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2014-11-07 18:41:22 +0100 |
commit | c32728e7bf0ba0449b60ea49df7f92fb6b70923d (patch) | |
tree | aa4221a0343c0095808010f15fb5dbb1a4efe237 /tactics | |
parent | b320666d84e2f9b91d0ab6dd70f29cdb7da68818 (diff) |
Removing the legacy intro tactic code.
Diffstat (limited to 'tactics')
-rw-r--r-- | tactics/extratactics.ml4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/extratactics.ml4 b/tactics/extratactics.ml4 index d048d5bcd..0c0204081 100644 --- a/tactics/extratactics.ml4 +++ b/tactics/extratactics.ml4 @@ -726,7 +726,7 @@ let case_eq_intros_rewrite x = let h = Tacmach.New.of_old (fun g -> fresh_id hyps (Id.of_string "heq") g) gl in Tacticals.New.tclTHENLIST [ Tacticals.New.tclDO (n'-n-1) intro; - Proofview.V82.tactic (Tacmach.introduction h); + introduction h; rewrite_except h] end ] |