aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/library.mli
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-05-29 10:48:37 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-05-29 10:48:37 +0000
commit32170384190168856efeac5bcf90edf1170b54d6 (patch)
tree0ea86b672df93d997fa1cab70b678ea7abdcf171 /library/library.mli
parent1e5182e9d5c29ae9adeed20dae32969785758809 (diff)
Nouveau modèle d'analyse syntaxique et d'interprétation des tactiques et commandes vernaculaires (cf dev/changements.txt pour plus de précisions)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2722 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/library.mli')
-rw-r--r--library/library.mli9
1 files changed, 5 insertions, 4 deletions
diff --git a/library/library.mli b/library/library.mli
index 5b51780e1..c29299331 100644
--- a/library/library.mli
+++ b/library/library.mli
@@ -9,6 +9,7 @@
(*i $Id$ i*)
(*i*)
+open Util
open Names
open Libobject
(*i*)
@@ -20,9 +21,9 @@ open Libobject
provides a high level function [require] which corresponds to the
vernacular command [Require]. *)
-val read_module : Nametab.qualid -> unit
+val read_module : Nametab.qualid located -> unit
val read_module_from_file : System.physical_path -> unit
-val import_module : bool -> Nametab.qualid -> unit
+val import_module : bool -> Nametab.qualid located -> unit
val module_is_loaded : dir_path -> bool
val module_is_opened : dir_path -> bool
@@ -39,10 +40,10 @@ val fmt_modules_state : unit -> Pp.std_ppcmds
exported. *)
val require_module :
- bool option -> Nametab.qualid list -> bool -> unit
+ bool option -> Nametab.qualid located list -> bool -> unit
val require_module_from_file :
- bool option -> Nametab.qualid -> string -> bool -> unit
+ bool option -> identifier option -> string -> bool -> unit
(*s [save_module_to s f] saves the current environment as a module [s]
in the file [f]. *)