aboutsummaryrefslogtreecommitdiff
path: root/API/API.mli
diff options
context:
space:
mode:
authorMaxime Dénès2017-11-29 12:55:19 +0100
committerMaxime Dénès2017-11-29 12:55:19 +0100
commit5109763ca7d2a1469b392b271da7c1ed711d4258 (patch)
treedfb3fbd1eddcc28cd29648f18c6cd1c6e04d47fb /API/API.mli
parentf303ed9fb26797b9ec7d172fe583e7ee607ae441 (diff)
parent9243166490e8c939bbf6aa0316e99025b25e6398 (diff)
Merge PR #6199: [vernac] Uniformize type of vernac interpretation.
Diffstat (limited to 'API/API.mli')
-rw-r--r--API/API.mli10
1 files changed, 5 insertions, 5 deletions
diff --git a/API/API.mli b/API/API.mli
index 830c0a0f65..1a84600ec9 100644
--- a/API/API.mli
+++ b/API/API.mli
@@ -6128,14 +6128,14 @@ sig
type atts = {
loc : Loc.t option;
locality : bool option;
+ polymorphic : bool;
}
- type vernac_command =
- Genarg.raw_generic_argument list ->
- atts:atts -> st:Vernacstate.t ->
- Vernacstate.t
+ type 'a vernac_command = 'a -> atts:atts -> st:Vernacstate.t -> Vernacstate.t
- val vinterp_add : deprecation -> Vernacexpr.extend_name -> vernac_command -> unit
+ type plugin_args = Genarg.raw_generic_argument list
+
+ val vinterp_add : deprecation -> Vernacexpr.extend_name -> plugin_args vernac_command -> unit
end