aboutsummaryrefslogtreecommitdiff
path: root/API
diff options
context:
space:
mode:
authorPierre Letouzey2017-06-10 15:54:31 +0200
committerPierre Letouzey2017-06-14 12:02:35 +0200
commit706b16c3c714f91bfff33ce340aec6f2d24fe246 (patch)
tree33c3e71e6772d0598b1d24a908ce1e58ecaaa544 /API
parent27c8e30fad95d887b698b0e3fa563644c293b033 (diff)
API: exports Mltop.module_is_known to both API.mli and grammar_API.mli
Diffstat (limited to 'API')
-rw-r--r--API/API.mli1
-rw-r--r--API/grammar_API.mli1
2 files changed, 2 insertions, 0 deletions
diff --git a/API/API.mli b/API/API.mli
index 20a637c1fa..9714f52b91 100644
--- a/API/API.mli
+++ b/API/API.mli
@@ -3307,6 +3307,7 @@ sig
val declare_cache_obj : (unit -> unit) -> string -> unit
val add_known_plugin : (unit -> unit) -> string -> unit
val add_known_module : string -> unit
+ val module_is_known : string -> bool
end
(* All items in the Proof_type module are deprecated. *)
diff --git a/API/grammar_API.mli b/API/grammar_API.mli
index 44aae771f6..4da5b380fe 100644
--- a/API/grammar_API.mli
+++ b/API/grammar_API.mli
@@ -211,6 +211,7 @@ end
module Mltop :
sig
val add_known_module : string -> unit
+ val module_is_known : string -> bool
val declare_cache_obj : (unit -> unit) -> string -> unit
end
module Vernacinterp :