aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2018-11-24 20:22:23 +0100
committerEmilio Jesus Gallego Arias2018-11-27 15:12:03 +0100
commit1655407ac0525efa0fcd98ab85e3fd80a9f6cf64 (patch)
tree901f1b03ea71e5703b3feaf2c0d939fd35053ad3 /plugins
parent39bf8df76fc1093f3efa672284421c884319c89d (diff)
[gramlib] Minor cleanups:
- remove duplicate type definitions `gram_assoc`, `gram_position`, - make global `warning_verbose` variable into a parameter.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ltac/tacentries.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ltac/tacentries.ml b/plugins/ltac/tacentries.ml
index ac2d88dec2..2aee809eb6 100644
--- a/plugins/ltac/tacentries.ml
+++ b/plugins/ltac/tacentries.ml
@@ -119,7 +119,7 @@ let get_tactic_entry n =
else if Int.equal n 5 then
Pltac.binder_tactic, None
else if 1<=n && n<5 then
- Pltac.tactic_expr, Some (Extend.Level (string_of_int n))
+ Pltac.tactic_expr, Some (Gramlib.Gramext.Level (string_of_int n))
else
user_err Pp.(str ("Invalid Tactic Notation level: "^(string_of_int n)^"."))