aboutsummaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/Vericertlib.v5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/Vericertlib.v b/src/common/Vericertlib.v
index 6437612..1c5c37f 100644
--- a/src/common/Vericertlib.v
+++ b/src/common/Vericertlib.v
@@ -57,9 +57,10 @@ Ltac learn_tac fact name :=
Tactic Notation "learn" constr(fact) := let name := fresh "H" in learn_tac fact name.
Tactic Notation "learn" constr(fact) "as" simple_intropattern(name) := learn_tac fact name.
-Ltac auto_apply H :=
+Ltac auto_apply fact :=
+ let H' := fresh "H" in
match goal with
- | H' : _ |- _ => apply H in H'
+ | H : _ |- _ => pose proof H as H'; apply fact in H'
end.
(** Specialize all hypotheses with a forall to a specific term *)