diff options
| author | barras | 2003-10-10 15:42:22 +0000 |
|---|---|---|
| committer | barras | 2003-10-10 15:42:22 +0000 |
| commit | cc1b83979b9978fb2979ae8cda86daddaa62badb (patch) | |
| tree | a13cc08f374cff641aea74a027cf6b7a85ffeb06 /contrib/interface | |
| parent | db1658f0837918e27885c827cc29392068775fa6 (diff) | |
changement nouvelle syntaxe (pt fixes)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4559 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/interface')
| -rw-r--r-- | contrib/interface/showproof.ml | 2 | ||||
| -rw-r--r-- | contrib/interface/xlate.ml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/interface/showproof.ml b/contrib/interface/showproof.ml index d33a41f98b..f2f56caa87 100644 --- a/contrib/interface/showproof.ml +++ b/contrib/interface/showproof.ml @@ -1285,7 +1285,7 @@ let rec natural_ntree ig ntree = | TacAssumption -> natural_trivial ig lh g gs ltree | TacClear _ -> natural_clear ig lh g gs ltree (* Besoin de l'argument de la tactique *) - | TacOldInduction (NamedHyp id) -> + | TacSimpleInduction (NamedHyp id) -> natural_induction ig lh g gs ge id ltree false | TacExtend (_,"InductionIntro",[a]) -> let id=(out_gen wit_ident a) in diff --git a/contrib/interface/xlate.ml b/contrib/interface/xlate.ml index 244b0543d3..2be3e18e68 100644 --- a/contrib/interface/xlate.ml +++ b/contrib/interface/xlate.ml @@ -964,8 +964,8 @@ and xlate_tac = CT_elim (xlate_formula c1, xlate_bindings sl, xlate_using u) | TacCase (c1,sl) -> CT_casetac (xlate_formula c1, xlate_bindings sl) - | TacOldInduction h -> CT_induction (xlate_quantified_hypothesis h) - | TacOldDestruct h -> CT_destruct (xlate_quantified_hypothesis h) + | TacSimpleInduction h -> CT_induction (xlate_quantified_hypothesis h) + | TacSimpleDestruct h -> CT_destruct (xlate_quantified_hypothesis h) | TacCut c -> CT_cut (xlate_formula c) | TacLApply c -> CT_use (xlate_formula c) | TacDecompose ([],c) -> |
