|
@@ -121,7 +121,9 @@ let rec get_basic rc_name =
|
|
|
match Sys.file_exists rc_name with
|
|
|
| `No -> create_basic rc_name; get_basic rc_name
|
|
|
| `Unknown -> failwith "Error reading configuration file";
|
|
|
- | `Yes -> try Sexp.load_sexp rc_name |> basic_rc_of_sexp
|
|
|
+ | `Yes ->
|
|
|
+ try
|
|
|
+ Sexp.load_sexp rc_name |> basic_rc_of_sexp
|
|
|
with exn ->
|
|
|
Messages.warning "Problem reading rc file";
|
|
|
sprintf
|