aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorHugo Herbelin2020-09-27 10:46:48 +0200
committerHugo Herbelin2020-10-10 22:16:39 +0200
commita6d52d2502c09e8acdca464faf67d3956448cbcf (patch)
tree71bf5602781c1e21a90d84555d8b62068fc31149 /plugins
parentb7c9ba2c678228593450ecdf272ff71facbc6a6e (diff)
Prim.pattern_ident takes a location and its synonymous pattern_identref is deprecated.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ltac/g_tactic.mlg2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ltac/g_tactic.mlg b/plugins/ltac/g_tactic.mlg
index e51b1f051d..c186a83a5c 100644
--- a/plugins/ltac/g_tactic.mlg
+++ b/plugins/ltac/g_tactic.mlg
@@ -280,7 +280,7 @@ GRAMMAR EXTEND Gram
| "[="; tc = intropatterns; "]" -> { IntroInjection tc } ] ]
;
naming_intropattern:
- [ [ prefix = pattern_ident -> { IntroFresh prefix }
+ [ [ prefix = pattern_ident -> { IntroFresh prefix.CAst.v }
| "?" -> { IntroAnonymous }
| id = ident -> { IntroIdentifier id } ] ]
;