aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-11-11 15:39:01 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-02-14 17:27:33 +0100
commit536026f3e20f761e8ef366ed732da7d3b626ac5e (patch)
tree571e44e2277b6d045d6c11fafca58b5ea6e43afa /tactics
parentca993b9e7765ac58f70740818758457c9367b0da (diff)
Cleaning up opening of the EConstr module in pretyping folder.
Diffstat (limited to 'tactics')
-rw-r--r--tactics/tactics.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index 2cb9e0864..eebb2a038 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -3165,7 +3165,7 @@ let expand_projections env sigma c =
let sigma = Sigma.to_evar_map sigma in
let rec aux env c =
match EConstr.kind sigma c with
- | Proj (p, c) -> EConstr.of_constr (Retyping.expand_projection env sigma p (aux env c) [])
+ | Proj (p, c) -> Retyping.expand_projection env sigma p (aux env c) []
| _ -> map_constr_with_full_binders sigma push_rel aux env c
in
EConstr.Unsafe.to_constr (aux env (EConstr.of_constr c))