aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--parsing/g_vernac.ml44
1 files changed, 2 insertions, 2 deletions
diff --git a/parsing/g_vernac.ml4 b/parsing/g_vernac.ml4
index a3145ca04d..0a7c0586b3 100644
--- a/parsing/g_vernac.ml4
+++ b/parsing/g_vernac.ml4
@@ -310,9 +310,9 @@ GEXTEND Gram
| IDENT "End"; id = identarg; "." -> <:ast< (EndSection $id) >>
(* Transparent and Opaque *)
- | IDENT "Transparent"; l = ne_identarg_list; "." ->
+ | IDENT "Transparent"; l = ne_qualidconstarg_list; "." ->
<:ast< (TRANSPARENT ($LIST $l)) >>
- | IDENT "Opaque"; l = ne_identarg_list; "." ->
+ | IDENT "Opaque"; l = ne_qualidconstarg_list; "." ->
<:ast< (OPAQUE ($LIST $l)) >>
(* Coercions *)