aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2000-12-06 11:35:50 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2000-12-06 11:35:50 +0000
commit78a213bfd65176dae8418bffb4fd95ef22326c81 (patch)
tree55b58b7d91f9d3cb81d72518702199f316a97ab0
parent3beac5ca0090b599e10f36a3a8e847181cb24121 (diff)
Notion de 'clause_pattern' pour désigner un ensemble d'occurrences dans le but et ses hypothèses
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1065 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--parsing/pcoq.ml42
-rw-r--r--parsing/pcoq.mli2
2 files changed, 2 insertions, 2 deletions
diff --git a/parsing/pcoq.ml4 b/parsing/pcoq.ml4
index ef838863f..4fba8e891 100644
--- a/parsing/pcoq.ml4
+++ b/parsing/pcoq.ml4
@@ -300,7 +300,7 @@ module Tactic =
let ne_qualidconstarg_list = gec_list "ne_qualidconstarg_list"
let ne_num_list = gec_list "ne_num_list"
let ne_pattern_list = gec_list "ne_pattern_list"
- let ne_pattern_hyp_list = gec_list "ne_pattern_hyp_list"
+ let clause_pattern = gec "clause_pattern"
let one_intropattern = gec "one_intropattern"
let intropattern = gec "intropattern"
let ne_intropattern = gec "ne_intropattern"
diff --git a/parsing/pcoq.mli b/parsing/pcoq.mli
index 6cd840398..7cf26bdd2 100644
--- a/parsing/pcoq.mli
+++ b/parsing/pcoq.mli
@@ -131,7 +131,7 @@ module Tactic :
val ne_intropattern : Coqast.t Gram.Entry.e
val ne_num_list : Coqast.t list Gram.Entry.e
val ne_pattern_list : Coqast.t list Gram.Entry.e
- val ne_pattern_hyp_list : Coqast.t list Gram.Entry.e
+ val clause_pattern : Coqast.t Gram.Entry.e
val ne_unfold_occ_list : Coqast.t list Gram.Entry.e
val numarg : Coqast.t Gram.Entry.e
val numarg_binding_list : Coqast.t list Gram.Entry.e