aboutsummaryrefslogtreecommitdiffhomepage
path: root/API
diff options
context:
space:
mode:
authorGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2017-12-07 22:27:19 +0100
committerGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2017-12-11 13:34:55 +0100
commitac2b757a7835672ba494bf42244b5d393e8db089 (patch)
treedb649017592a9b78d70c9abd33e490b758f75fc4 /API
parent84a655b14bfc886447da9abc5cf141ab87ae4bd7 (diff)
Remove deprecated option Tactic Compat Context.
And some code simplification.
Diffstat (limited to 'API')
-rw-r--r--API/API.mli7
1 files changed, 3 insertions, 4 deletions
diff --git a/API/API.mli b/API/API.mli
index 3ed008ff5..3f52ac62b 100644
--- a/API/API.mli
+++ b/API/API.mli
@@ -3853,10 +3853,9 @@ sig
type matching_result =
{ m_sub : bound_ident_map * Ltac_pretype.patvar_map;
m_ctx : EConstr.constr }
- val match_subterm_gen : Environ.env -> Evd.evar_map ->
- bool ->
- binding_bound_vars * Pattern.constr_pattern -> EConstr.constr ->
- matching_result IStream.t
+ val match_subterm : Environ.env -> Evd.evar_map ->
+ binding_bound_vars * Pattern.constr_pattern -> EConstr.constr ->
+ matching_result IStream.t
val matches : Environ.env -> Evd.evar_map -> Pattern.constr_pattern -> EConstr.constr -> Ltac_pretype.patvar_map
end