aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/tactics.ml
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-11-03 15:23:57 +0100
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-11-03 15:53:49 +0100
commitc4f270f573360e39bd91e3ffff8d37775b2871d7 (patch)
tree7419764e14de7287b48f448dde27272beb7eedf5 /tactics/tactics.ml
parent7af811e5100839484cbed0126b5c37a972487ec3 (diff)
Subtle swap of lines to preserve VarInstance src field before checking
for residual unifiable evars (otherwise "thin" from logic.ml, erases the src field) + typo.
Diffstat (limited to 'tactics/tactics.ml')
-rw-r--r--tactics/tactics.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index 5918cf997..e26be98b5 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -3841,11 +3841,10 @@ let pose_induction_arg_then clear_flag isrec with_evars
let (sigma,c) = use_bindings env sigma elim (c0,lbind) t0 in
let t = Retyping.get_type_of env sigma c in
mkletin_goal env sigma with_eq false (id,lastlhyp,ccl,c) (Some t));
+ Proofview.(if with_evars then shelve_unifiable else guard_no_unifiable);
if is_arg_pure_hyp
then Tacticals.New.tclTRY (Proofview.V82.tactic (thin [destVar c0]))
else Proofview.tclUNIT ();
- Proofview.(if with_evars then shelve_unifiable else guard_no_unifiable);
- Proofview.shelve_unifiable;
if isrec then Proofview.cycle (-1) else Proofview.tclUNIT ()
])
(tac fixedvars)