aboutsummaryrefslogtreecommitdiffhomepage
path: root/stm/stm.ml
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2018-05-11 10:19:35 +0200
committerGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2018-05-17 10:36:33 +0200
commit17a2ba8d59c9b459bb67a09cb0374ca9a1eea634 (patch)
treeb07d91cb09db1e0b4ca9cb9f1898c4b5262d9525 /stm/stm.ml
parent1ffa181c8015584fe1762a5ab8f6a664725767fa (diff)
[STM] Nested Proofs Allowed has to be executed immediately
since it affects scheduling (actually the error the option lets one silence)
Diffstat (limited to 'stm/stm.ml')
-rw-r--r--stm/stm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/stm.ml b/stm/stm.ml
index 9192c1410..20409c25e 100644
--- a/stm/stm.ml
+++ b/stm/stm.ml
@@ -2768,7 +2768,7 @@ let allow_nested_proofs = ref false
let _ = Goptions.declare_bool_option
{ Goptions.optdepr = false;
Goptions.optname = "Nested Proofs Allowed";
- Goptions.optkey = ["Nested";"Proofs";"Allowed"];
+ Goptions.optkey = Vernac_classifier.stm_allow_nested_proofs_option_name;
Goptions.optread = (fun () -> !allow_nested_proofs);
Goptions.optwrite = (fun b -> allow_nested_proofs := b) }