aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2001-08-06 14:49:54 +0000
committerherbelin2001-08-06 14:49:54 +0000
commit4c564bf585b90a94bf6dabf208e8d162004e27df (patch)
treefc6d1f59c1a69702dbd1215516b3ad84e02ce8b2
parent83c56744d7e232abeb5f23e6d0f23cd0abc14a9c (diff)
Nouvelle entrée ident_or_numarg
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1881 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--parsing/pcoq.ml41
-rw-r--r--parsing/pcoq.mli1
2 files changed, 2 insertions, 0 deletions
diff --git a/parsing/pcoq.ml4 b/parsing/pcoq.ml4
index 849d2639cc..8680734efd 100644
--- a/parsing/pcoq.ml4
+++ b/parsing/pcoq.ml4
@@ -290,6 +290,7 @@ module Tactic =
let numarg_binding_list = gec_list "numarg_binding_list"
let lconstrarg_binding_list = gec_list "lconstrarg_binding_list"
let constrarg_list = gec_list "constrarg_list"
+ let ident_or_numarg = gec "ident_or_numarg"
let ident_or_constrarg = gec "ident_or_constrarg"
let identarg = gec "identarg"
let hypident = gec "hypident"
diff --git a/parsing/pcoq.mli b/parsing/pcoq.mli
index b9c77509e2..807d5d8fd7 100644
--- a/parsing/pcoq.mli
+++ b/parsing/pcoq.mli
@@ -114,6 +114,7 @@ module Tactic :
val constrarg_binding_list : Coqast.t list Gram.Entry.e
val constrarg_list : Coqast.t list Gram.Entry.e
val fixdecl : Coqast.t list Gram.Entry.e
+ val ident_or_numarg : Coqast.t Gram.Entry.e
val ident_or_constrarg : Coqast.t Gram.Entry.e
val identarg : Coqast.t Gram.Entry.e
val hypident : Coqast.t Gram.Entry.e