diff options
| author | Maxime Dénès | 2018-11-22 07:57:17 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2019-01-11 10:39:24 +0100 |
| commit | 22c9cb140157ae47a52d0321ffa4a98b9c909305 (patch) | |
| tree | 4b033f7ad4df6656473497dd72fb1724a24cda93 | |
| parent | ac8c25a9fac51745f0b53162fba48ef5b86d227d (diff) | |
Fix vernac classification of `Fail Instance`
AFAIK `Fail Instance` cannot open a goal.
| -rw-r--r-- | stm/vernac_classifier.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/vernac_classifier.ml b/stm/vernac_classifier.ml index f40b3e901b..454a4b66e7 100644 --- a/stm/vernac_classifier.ml +++ b/stm/vernac_classifier.ml @@ -214,6 +214,6 @@ let classify_vernac e = | VtQed _, _ -> VtProofStep { parallel = `No; proof_block_detection = None }, VtNow - | (VtStartProof _ | VtUnknown), _ -> VtUnknown, VtNow) + | (VtStartProof _ | VtUnknown), _ -> VtQuery, VtLater) in static_control_classifier e |
