diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2003-12-22 23:58:41 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2003-12-22 23:58:41 +0000 |
commit | 8b9b401324a1f4ee5b3e932c4789ff1582dc578c (patch) | |
tree | 671f7e9e18fe2c41832ba959eb9003d1c98d2892 /parsing | |
parent | c96ac99c54ae034e331f0420969f127fd27b5478 (diff) |
Mise en valeur intropattern de paires et acceptation dans le 'as' de induction/inversion
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5128 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
-rw-r--r-- | parsing/g_tacticnew.ml4 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/parsing/g_tacticnew.ml4 b/parsing/g_tacticnew.ml4 index 8b5f9139d..4975aed3c 100644 --- a/parsing/g_tacticnew.ml4 +++ b/parsing/g_tacticnew.ml4 @@ -295,6 +295,7 @@ GEXTEND Gram ; with_names: [ [ "as"; "["; ids = LIST1 (LIST0 simple_intropattern) SEP "|"; "]" -> ids + | "as"; "("; ids = LIST1 simple_intropattern SEP ","; ")" -> [ids] | -> [] ] ] ; simple_tactic: |