aboutsummaryrefslogtreecommitdiffstats
path: root/src/PropToBool.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/PropToBool.v')
-rw-r--r--src/PropToBool.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PropToBool.v b/src/PropToBool.v
index 48ebd06..bf0ec46 100644
--- a/src/PropToBool.v
+++ b/src/PropToBool.v
@@ -211,8 +211,8 @@ Ltac prop2bool_hyp H :=
].
Ltac prop2bool_hyps Hs :=
- match Hs with
- | (?Hs, ?H) => try prop2bool_hyp H; [ .. | prop2bool_hyps Hs]
+ lazymatch Hs with
+ | (?Hs1, ?Hs2) => prop2bool_hyps Hs1; [ .. | prop2bool_hyps Hs2]
| ?H => try prop2bool_hyp H
end.