aboutsummaryrefslogtreecommitdiff
path: root/toplevel
diff options
context:
space:
mode:
authorEnrico Tassi2014-07-11 10:34:55 +0200
committerEnrico Tassi2014-07-11 10:35:16 +0200
commit58270be4668ab87e5f2d0d06c820bd457ae1aa01 (patch)
tree42d4e399ef829f45f02d0c496c955d380acb4ab0 /toplevel
parentd15b6418d6f7071b6d85b286d60e645dcd0123b5 (diff)
STM: flag to turn off branch reopening
This is useful if a UI does not support that
Diffstat (limited to 'toplevel')
-rw-r--r--toplevel/coqtop.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/toplevel/coqtop.ml b/toplevel/coqtop.ml
index be63db391d..73e1fb9d15 100644
--- a/toplevel/coqtop.ml
+++ b/toplevel/coqtop.ml
@@ -382,6 +382,8 @@ let parse_args arglist =
(* Options with zero arg *)
|"-async-proofs-always-delegate" ->
Flags.async_proofs_always_delegate := true;
+ |"-async-proofs-never-reopen-branch" ->
+ Flags.async_proofs_never_reopen_branch := true;
|"-batch" -> set_batch_mode ()
|"-beautify" -> make_beautify true
|"-boot" -> boot := true; no_load_rc ()