aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/stm.ml
diff options
context:
space:
mode:
Diffstat (limited to 'toplevel/stm.ml')
-rw-r--r--toplevel/stm.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/toplevel/stm.ml b/toplevel/stm.ml
index 85e9a30ab..2411eed6e 100644
--- a/toplevel/stm.ml
+++ b/toplevel/stm.ml
@@ -1291,9 +1291,9 @@ let init () =
let opts = match !Flags.coq_slave_options with
| None -> []
| Some s -> Str.split_delim (Str.regexp ",") s in
- if List.mem "fallback-to-lazy-if-marshal-error=no" opts then
+ if String.List.mem "fallback-to-lazy-if-marshal-error=no" opts then
fallback_to_lazy_if_marshal_error := false;
- if List.mem "fallback-to-lazy-if-slave-dies=no" opts then
+ if String.List.mem "fallback-to-lazy-if-slave-dies=no" opts then
fallback_to_lazy_if_slave_dies := false;
begin try
let env_opt = Str.regexp "^extra-env=" in