aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/library.ml
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-03-21 14:22:36 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-03-21 14:22:36 +0000
commitf43d96aec71449e3b75e9fd732e87694cec5db8f (patch)
tree593eff77bb330585bc5b604d3f7aba186204d55d /library/library.ml
parent7f3a79cd9426b009021e2096805f94c5641988da (diff)
Removing mandatory suffixes for library files.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16332 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/library.ml')
-rw-r--r--library/library.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/library.ml b/library/library.ml
index a5f93c02c..edb86bc4c 100644
--- a/library/library.ml
+++ b/library/library.ml
@@ -318,7 +318,7 @@ let in_import : DirPath.t * bool -> obj =
(*s Loading from disk to cache (preparation phase) *)
let (raw_extern_library, raw_intern_library) =
- System.raw_extern_intern Coq_config.vo_magic_number ".vo"
+ System.raw_extern_intern Coq_config.vo_magic_number
(************************************************************************)
(*s Locate absolute or partially qualified library names in the path *)
@@ -401,10 +401,10 @@ let mk_library md table digest =
let fetch_opaque_table (f,pos,digest) =
try
let ch = System.with_magic_number_check raw_intern_library f in
- seek_in ch pos;
+ let () = seek_in ch pos in
if not (String.equal (System.marshal_in f ch) digest) then failwith "File changed!";
let table = (System.marshal_in f ch : LightenLibrary.table) in
- close_in ch;
+ let () = close_in ch in
table
with e when Errors.noncritical e ->
error