diff options
author | Guillaume Melquiond <guillaume.melquiond@inria.fr> | 2016-08-27 06:48:46 +0200 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@inria.fr> | 2016-08-27 06:48:46 +0200 |
commit | 26ed8658149d14efa6e4d077c573481281cb610e (patch) | |
tree | 573900ad783ec67dd4a2207b9ac8b30054df7ab3 /parsing | |
parent | 7244637f251272c0d0155d49fc7c1af255b7cef8 (diff) |
Support qualified identifiers in Show Match (bug #5050).
Diffstat (limited to 'parsing')
-rw-r--r-- | parsing/g_proofs.ml4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/g_proofs.ml4 b/parsing/g_proofs.ml4 index b0ff8b64f..1e3c4b880 100644 --- a/parsing/g_proofs.ml4 +++ b/parsing/g_proofs.ml4 @@ -88,7 +88,7 @@ GEXTEND Gram | IDENT "Show"; IDENT "Proof" -> VernacShow ShowProof | IDENT "Show"; IDENT "Intro" -> VernacShow (ShowIntros false) | IDENT "Show"; IDENT "Intros" -> VernacShow (ShowIntros true) - | IDENT "Show"; IDENT "Match"; id = identref -> VernacShow (ShowMatch id) + | IDENT "Show"; IDENT "Match"; id = reference -> VernacShow (ShowMatch id) | IDENT "Show"; IDENT "Thesis" -> VernacShow ShowThesis | IDENT "Guarded" -> VernacCheckGuard (* Hints for Auto and EAuto *) |