aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2014-08-27 13:55:26 +0200
committerPierre-Marie Pédrot2014-08-27 13:55:26 +0200
commit6461588b9fab2d59293b5c8380f0468421b5e0eb (patch)
tree855af77c3c97d2a143b1cc65237cf02a044f94bb
parentc70d5b27ad5872c74e20b6c997383fb4462a68dc (diff)
Fixing bug #3493.
Coq now accepts the [Universes u1 ... un] syntax.
-rw-r--r--parsing/g_vernac.ml41
1 files changed, 1 insertions, 0 deletions
diff --git a/parsing/g_vernac.ml4 b/parsing/g_vernac.ml4
index 288263322d..013381382e 100644
--- a/parsing/g_vernac.ml4
+++ b/parsing/g_vernac.ml4
@@ -215,6 +215,7 @@ GEXTEND Gram
| IDENT "Register"; IDENT "Inline"; id = identref ->
VernacRegister(id, RegisterInline)
| IDENT "Universe"; l = LIST1 identref -> VernacUniverse l
+ | IDENT "Universes"; l = LIST1 identref -> VernacUniverse l
| IDENT "Constraint"; l = LIST1 univ_constraint SEP "," -> VernacConstraint l
] ]
;