diff options
author | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2016-03-17 16:01:23 +0100 |
---|---|---|
committer | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2016-03-17 16:04:39 +0100 |
commit | d66fe71c93bc06f6006c64118deb1d5b01bf7487 (patch) | |
tree | 9b534252c1699be106a40daacc416f585dad74eb /toplevel | |
parent | e3e8a4065047e254f5f5c2747227db75f01b7bed (diff) |
Adding a universe argument to Pcoq.create_generic_entry.
Diffstat (limited to 'toplevel')
-rw-r--r-- | toplevel/g_obligations.ml4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toplevel/g_obligations.ml4 b/toplevel/g_obligations.ml4 index 32ccf21d2..2a5676525 100644 --- a/toplevel/g_obligations.ml4 +++ b/toplevel/g_obligations.ml4 @@ -34,7 +34,7 @@ type 'a withtac_argtype = (Tacexpr.raw_tactic_expr option, 'a) Genarg.abstract_a let wit_withtac : Tacexpr.raw_tactic_expr option Genarg.uniform_genarg_type = Genarg.create_arg "withtac" -let withtac = Pcoq.create_generic_entry "withtac" (Genarg.rawwit wit_withtac) +let withtac = Pcoq.create_generic_entry Pcoq.utactic "withtac" (Genarg.rawwit wit_withtac) GEXTEND Gram GLOBAL: withtac; |