aboutsummaryrefslogtreecommitdiffhomepage
path: root/parsing/pcoq.ml4
diff options
context:
space:
mode:
authorGravatar clrenard <clrenard@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-11-17 16:10:42 +0000
committerGravatar clrenard <clrenard@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-11-17 16:10:42 +0000
commit4d2d218a6296fad88225ceea66f08355ec6d9a5c (patch)
tree80cfe417dd9ab01b68038cdca9f2f9e67f16dcfa /parsing/pcoq.ml4
parent7422420fb651d0bcbdf31d30ec93403460420daf (diff)
New tactics : econstructor, eleft, eright, esplit
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4929 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing/pcoq.ml4')
-rw-r--r--parsing/pcoq.ml43
1 files changed, 3 insertions, 0 deletions
diff --git a/parsing/pcoq.ml4 b/parsing/pcoq.ml4
index 759030fbe..32ab9894e 100644
--- a/parsing/pcoq.ml4
+++ b/parsing/pcoq.ml4
@@ -369,6 +369,8 @@ module Tactic =
make_gen_entry utactic rawwit_casted_open_constr "castedopenconstr"
let constr_with_bindings =
make_gen_entry utactic rawwit_constr_with_bindings "constr_with_bindings"
+ let with_bindings =
+ make_gen_entry utactic rawwit_with_bindings "with_bindings"
let constrarg = make_gen_entry utactic rawwit_constr_may_eval "constrarg"
let quantified_hypothesis =
make_gen_entry utactic rawwit_quant_hyp "quantified_hypothesis"
@@ -410,6 +412,7 @@ let reset_all_grammars () =
f Tactic.simple_tactic;
f Tactic.castedopenconstr;
f Tactic.constr_with_bindings;
+ f Tactic.with_bindings;
f Tactic.constrarg;
f Tactic.quantified_hypothesis;
f Tactic.int_or_var;