aboutsummaryrefslogtreecommitdiff
path: root/tactics/elim.ml
diff options
context:
space:
mode:
authorfilliatr1999-12-01 08:03:06 +0000
committerfilliatr1999-12-01 08:03:06 +0000
commitdda7c7bb0b6ea0c2106459d8ae208eff0dfd6738 (patch)
tree21bd3b1535e2e9b9cfcfa0f8cab47817a1769b70 /tactics/elim.ml
parent8b882c1ab5a31eea35eec89f134238dd17b945c2 (diff)
- Typing -> Safe_typing
- proofs/Typing_ev -> pretyping/Typing - env -> sign - fonctions var_context git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@167 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/elim.ml')
-rw-r--r--tactics/elim.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/elim.ml b/tactics/elim.ml
index 3fe9430c8c..2505f3b0a3 100644
--- a/tactics/elim.ml
+++ b/tactics/elim.ml
@@ -100,13 +100,13 @@ let dyn_decompose args gl =
match args with
| [Clause ids; Command c] ->
decompose_these (pf_constr_of_com gl c) ids gl
- | [CLAUSE ids; Constr c] ->
+ | [Clause ids; Constr c] ->
decompose_these c ids gl
| l -> bad_tactic_args "DecomposeThese" l gl
let h_decompose =
let v_decompose = hide_tactic "DecomposeThese" dyn_decompose in
- fun ids c -> v_decompose [(CLAUSE ids);(CONSTR c)]
+ fun ids c -> v_decompose [Clause ids; Constr c]
let vernac_decompose_and =
hide_constr_tactic "DecomposeAnd" decompose_and