diff options
author | Hugo Herbelin <Hugo.Herbelin@inria.fr> | 2014-12-07 18:32:56 +0100 |
---|---|---|
committer | Hugo Herbelin <Hugo.Herbelin@inria.fr> | 2014-12-07 18:39:31 +0100 |
commit | 2fa05a8d300f5c0d375a558a8bced972eea4bfaf (patch) | |
tree | ecc7fa89b5f4be1bcc045fcd0d75e2b20f289566 /plugins/funind | |
parent | 2acc6327e4d8a05898b75cb3abb47b7941ec420a (diff) |
Moving change_in_concl, change_in_hyp, change_concl to Proofview.tactic.
Diffstat (limited to 'plugins/funind')
-rw-r--r-- | plugins/funind/recdef.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/funind/recdef.ml b/plugins/funind/recdef.ml index fd54584bc..a38764c5b 100644 --- a/plugins/funind/recdef.ml +++ b/plugins/funind/recdef.ml @@ -673,9 +673,9 @@ let mkDestructEq : tclTHENLIST [Simple.generalize new_hyps; (fun g2 -> - change_in_concl None + Proofview.V82.of_tactic (change_in_concl None (fun sigma -> - pattern_occs [Locus.AllOccurrencesBut [1], expr] (pf_env g2) sigma (pf_concl g2)) g2); + pattern_occs [Locus.AllOccurrencesBut [1], expr] (pf_env g2) sigma (pf_concl g2))) g2); Proofview.V82.of_tactic (simplest_case expr)]), to_revert |