aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/lib.ml
diff options
context:
space:
mode:
Diffstat (limited to 'library/lib.ml')
-rw-r--r--library/lib.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/lib.ml b/library/lib.ml
index 379d0e8ad..159ac2d6d 100644
--- a/library/lib.ml
+++ b/library/lib.ml
@@ -220,7 +220,7 @@ let add_anonymous_entry node =
let add_leaf id obj =
let (path, _) = current_prefix () in
- if Names.mp_eq path Names.initial_path then
+ if Names.ModPath.equal path Names.initial_path then
error ("No session module started (use -top dir)");
let oname = make_oname id in
cache_object (oname,obj);
@@ -296,7 +296,7 @@ let end_mod is_type =
let oname,fs =
try match find_entry_p is_opening_node with
| oname,OpenedModule (ty,_,_,fs) ->
- if Pervasives.(=) ty is_type then oname, fs
+ if ty == is_type then oname, fs
else error_still_opened (module_kind ty) oname
| oname,OpenedSection _ -> error_still_opened "section" oname
| _ -> assert false