aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics
diff options
context:
space:
mode:
Diffstat (limited to 'tactics')
-rw-r--r--tactics/tactics.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index d131e2d33..26b05c68e 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -120,7 +120,7 @@ let introduction = Tacmach.introduction
let refine = Tacmach.refine
let convert_concl ?(check=true) ty k =
- Proofview.Goal.nf_enter begin fun gl ->
+ Proofview.Goal.enter begin fun gl ->
let env = Proofview.Goal.env gl in
let sigma = Proofview.Goal.sigma gl in
let conclty = Proofview.Goal.raw_concl gl in
@@ -139,7 +139,7 @@ let convert_concl ?(check=true) ty k =
end
let convert_hyp ?(check=true) d =
- Proofview.Goal.nf_enter begin fun gl ->
+ Proofview.Goal.enter begin fun gl ->
let env = Proofview.Goal.env gl in
let sigma = Proofview.Goal.sigma gl in
let ty = Proofview.Goal.raw_concl gl in