aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorGaëtan Gilbert2019-02-26 23:41:38 +0100
committerGaëtan Gilbert2019-03-25 10:53:19 +0100
commitbf840bafc19deba67e5270dfd31b8b6662b73132 (patch)
tree0b35aa63d6faa37356b4b87d763e47577809f6d2 /tactics
parente8fd832d9e487fa57e2efe627223d04ff2977fa9 (diff)
Fix #9652: rewrite fails to detect lack of progress
Diffstat (limited to 'tactics')
-rw-r--r--tactics/equality.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/equality.ml b/tactics/equality.ml
index 88ce9868af..412fbbfd1b 100644
--- a/tactics/equality.ml
+++ b/tactics/equality.ml
@@ -257,7 +257,7 @@ let tclNOTSAMEGOAL tac =
Proofview.Goal.goals >>= fun gls ->
let check accu gl' =
gl' >>= fun gl' ->
- let accu = accu || Goal.V82.same_goal sigma ev (project gl') (goal gl') in
+ let accu = accu || Proofview.Progress.goal_equal sigma ev (project gl') (goal gl') in
Proofview.tclUNIT accu
in
Proofview.Monad.List.fold_left check false gls >>= fun has_same ->