aboutsummaryrefslogtreecommitdiffstats
path: root/src/Tactics.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Tactics.v')
-rw-r--r--src/Tactics.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Tactics.v b/src/Tactics.v
index e41b0f5..c44af14 100644
--- a/src/Tactics.v
+++ b/src/Tactics.v
@@ -29,7 +29,7 @@ Ltac get_hyps_acc acc k :=
| id _ => fail
| _ =>
change P with (id P) in H;
- match acc with
+ lazymatch acc with
| Some ?t => get_hyps_acc (Some (H, t)) k
| None => get_hyps_acc (Some H) k
end