diff options
| author | Hugo Herbelin | 2020-09-27 10:46:48 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2020-10-10 22:16:39 +0200 |
| commit | a6d52d2502c09e8acdca464faf67d3956448cbcf (patch) | |
| tree | 71bf5602781c1e21a90d84555d8b62068fc31149 /plugins/ltac | |
| parent | b7c9ba2c678228593450ecdf272ff71facbc6a6e (diff) | |
Prim.pattern_ident takes a location and its synonymous pattern_identref is deprecated.
Diffstat (limited to 'plugins/ltac')
| -rw-r--r-- | plugins/ltac/g_tactic.mlg | 2 |
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 } ] ] ; |
