aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/library.mli
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-01-18 15:32:46 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-01-18 15:32:46 +0000
commit7d1a2a61b9ba3d2d36ec51652d9f86280645fb83 (patch)
treef84ed5271d12c41a2653aec9d1dcf7b1eb4f03e9 /library/library.mli
parent8aab9be00adcdc2b13150db4a963ee6123f447c2 (diff)
Plusieurs arguments autorisés pour Require et Read Module; mise en place d'un mécanisme pour se souvenir de l'ordre des Open (mais pas activé); suppression du champ string dans le summary REQUIRE
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2411 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/library.mli')
-rw-r--r--library/library.mli9
1 files changed, 6 insertions, 3 deletions
diff --git a/library/library.mli b/library/library.mli
index 3274f7361..5b51780e1 100644
--- a/library/library.mli
+++ b/library/library.mli
@@ -22,10 +22,10 @@ open Libobject
val read_module : Nametab.qualid -> unit
val read_module_from_file : System.physical_path -> unit
-val import_module : dir_path -> unit
+val import_module : bool -> Nametab.qualid -> unit
val module_is_loaded : dir_path -> bool
-val module_is_opened : string -> bool
+val module_is_opened : dir_path -> bool
val loaded_modules : unit -> dir_path list
val opened_modules : unit -> dir_path list
@@ -39,7 +39,10 @@ val fmt_modules_state : unit -> Pp.std_ppcmds
exported. *)
val require_module :
- bool option -> Nametab.qualid -> string option -> bool -> unit
+ bool option -> Nametab.qualid list -> bool -> unit
+
+val require_module_from_file :
+ bool option -> Nametab.qualid -> string -> bool -> unit
(*s [save_module_to s f] saves the current environment as a module [s]
in the file [f]. *)