aboutsummaryrefslogtreecommitdiff
path: root/plugins/ssrmatching
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-11-22 11:44:12 +0100
committerPierre-Marie Pédrot2018-11-23 13:59:15 +0100
commit548dcdc751287274c9cce7d13d779a81346a5af2 (patch)
tree4c850e41b9e80c39e94ebdbac752d46c27db8932 /plugins/ssrmatching
parentbb4daa4af0515f3041203c5bcc0a1d8cd1123e5a (diff)
Remove the unsafe camlp5 API from the Coq codebase.
Diffstat (limited to 'plugins/ssrmatching')
-rw-r--r--plugins/ssrmatching/g_ssrmatching.mlg2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ssrmatching/g_ssrmatching.mlg b/plugins/ssrmatching/g_ssrmatching.mlg
index 0dd17dfc15..4ddaeb49fd 100644
--- a/plugins/ssrmatching/g_ssrmatching.mlg
+++ b/plugins/ssrmatching/g_ssrmatching.mlg
@@ -68,7 +68,7 @@ let input_ssrtermkind strm = match Util.stream_nth 0 strm with
| Tok.KEYWORD "(" -> '('
| Tok.KEYWORD "@" -> '@'
| _ -> ' '
-let ssrtermkind = Pcoq.Gram.Entry.of_parser "ssrtermkind" input_ssrtermkind
+let ssrtermkind = Pcoq.Entry.of_parser "ssrtermkind" input_ssrtermkind
}