aboutsummaryrefslogtreecommitdiff
path: root/parsing/g_module.ml4
diff options
context:
space:
mode:
Diffstat (limited to 'parsing/g_module.ml4')
-rw-r--r--parsing/g_module.ml44
1 files changed, 2 insertions, 2 deletions
diff --git a/parsing/g_module.ml4 b/parsing/g_module.ml4
index 7e2532c200..b3a281b643 100644
--- a/parsing/g_module.ml4
+++ b/parsing/g_module.ml4
@@ -31,9 +31,9 @@ GEXTEND Gram
;
with_declaration:
- [ [ "Definition"; id = base_ident; ":="; c = Constr.constr ->
+ [ [ "Definition"; id = identref; ":="; c = Constr.constr ->
CWith_Definition (id,c)
- | IDENT "Module"; id = base_ident; ":="; qid = qualid ->
+ | IDENT "Module"; id = identref; ":="; qid = qualid ->
CWith_Module (id,qid)
] ]
;