aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tactics/tactics.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index 886620bc95..2d68a721f0 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -176,13 +176,13 @@ let redin_combinator redfun = function
(* Now we introduce different instances of the previous tacticals *)
let change_hyp_and_check t env sigma c =
- if is_conv (Global.env()) sigma t c then
+ if is_conv env sigma t c then
t
else
errorlabstrm "convert-check-hyp" [< 'sTR "Not convertible" >]
let change_concl_and_check t env sigma c =
- if is_conv_leq (Global.env()) sigma t c then
+ if is_conv_leq env sigma t c then
t
else
errorlabstrm "convert-check-concl" [< 'sTR "Not convertible" >]