aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-02-12 15:49:08 +0100
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-02-12 17:20:15 +0100
commite03513b7309008a45957609739bcdaf3789f3052 (patch)
treef910699eb3afb1f2b1835a01e8529c48c950b861
parent7f427a8ab2e08e24c303cffd2e54d4fb477f3b00 (diff)
Fixing #3982 (conflict with max notation for universes).
-rw-r--r--parsing/g_constr.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/g_constr.ml4 b/parsing/g_constr.ml4
index 8246df283..3bb029a88 100644
--- a/parsing/g_constr.ml4
+++ b/parsing/g_constr.ml4
@@ -157,7 +157,7 @@ GEXTEND Gram
] ]
;
universe:
- [ [ "max("; ids = LIST1 ident SEP ","; ")" -> ids
+ [ [ IDENT "max"; "("; ids = LIST1 ident SEP ","; ")" -> ids
| id = ident -> [id]
] ]
;