aboutsummaryrefslogtreecommitdiff
path: root/vernac/g_proofs.mlg
diff options
context:
space:
mode:
authorThéo Zimmermann2020-11-10 16:02:56 +0100
committerThéo Zimmermann2020-11-12 16:09:25 +0100
commit1117058b39603bb42591961f4b13faa6c58c6ee2 (patch)
tree49365ed6a2a4944102f3850c32f52394a0cfbe11 /vernac/g_proofs.mlg
parent3fa2430e8c66408fa3a8fe95af54e53d20e5951b (diff)
Revert to "using" not being a keyword in -noinit mode.
The IDENT annotations in g_ltac.mlg are required to not break the parser.
Diffstat (limited to 'vernac/g_proofs.mlg')
-rw-r--r--vernac/g_proofs.mlg2
1 files changed, 1 insertions, 1 deletions
diff --git a/vernac/g_proofs.mlg b/vernac/g_proofs.mlg
index 60ff9896bf..5b80ed6794 100644
--- a/vernac/g_proofs.mlg
+++ b/vernac/g_proofs.mlg
@@ -56,7 +56,7 @@ GRAMMAR EXTEND Gram
[ [ IDENT "Goal"; c = lconstr ->
{ VernacDefinition (Decls.(NoDischarge, Definition), ((CAst.make ~loc Names.Anonymous), None), ProveBody ([], c)) }
| IDENT "Proof" -> { VernacProof (None,None) }
- | IDENT "Proof"; "using"; l = G_vernac.section_subset_expr ->
+ | IDENT "Proof"; IDENT "using"; l = G_vernac.section_subset_expr ->
{ VernacProof (None,Some l) }
| IDENT "Proof" ; IDENT "Mode" ; mn = string -> { VernacProofMode mn }
| IDENT "Proof"; c = lconstr -> { VernacExactProof c }