aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel
diff options
context:
space:
mode:
Diffstat (limited to 'toplevel')
-rw-r--r--toplevel/vernac.ml2
-rw-r--r--toplevel/vernacentries.ml2
2 files changed, 2 insertions, 2 deletions
diff --git a/toplevel/vernac.ml b/toplevel/vernac.ml
index 735724aed..35a1eb494 100644
--- a/toplevel/vernac.ml
+++ b/toplevel/vernac.ml
@@ -125,7 +125,7 @@ and raw_load_vernac_file verbosely s =
let _ = read_vernac_file verbosely s in ()
and raw_compile_module verbosely only_spec mname file =
- Library.open_module mname;
+ Library.import_module mname; (* ??? *)
let lfname = read_vernac_file verbosely file in
let base = Filename.chop_suffix lfname ".v" in
Pfedit.check_no_pending_proofs ();
diff --git a/toplevel/vernacentries.ml b/toplevel/vernacentries.ml
index 9b11040d2..7f3485e4e 100644
--- a/toplevel/vernacentries.ml
+++ b/toplevel/vernacentries.ml
@@ -329,7 +329,7 @@ let _ =
(function
| [VARG_IDENTIFIER id] ->
fun () ->
- without_mes_ambig Library.open_module (string_of_id id)
+ without_mes_ambig Library.import_module (string_of_id id)
| _ -> bad_vernac_args "ImportModule")
let _ =