diff options
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/firstorder/g_ground.ml4 | 2 | ||||
| -rw-r--r-- | plugins/omega/coq_omega.ml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/firstorder/g_ground.ml4 b/plugins/firstorder/g_ground.ml4 index c125be65a0..5631488728 100644 --- a/plugins/firstorder/g_ground.ml4 +++ b/plugins/firstorder/g_ground.ml4 @@ -141,7 +141,7 @@ END open Proofview.Notations let default_declarative_automation = - Proofview.tclUNIT () >= fun () -> (* delay for [congruence_depth] *) + Proofview.tclUNIT () >>= fun () -> (* delay for [congruence_depth] *) Tacticals.New.tclORELSE (Tacticals.New.tclORELSE (Auto.h_trivial [] None) (Cctac.congruence_tac !congruence_depth [])) diff --git a/plugins/omega/coq_omega.ml b/plugins/omega/coq_omega.ml index b61279cd50..74f1ba713f 100644 --- a/plugins/omega/coq_omega.ml +++ b/plugins/omega/coq_omega.ml @@ -1861,7 +1861,7 @@ let destructure_goal = let destructure_goal = destructure_goal let omega_solver = - Proofview.tclUNIT () >= fun () -> (* delay for [check_required_library] *) + Proofview.tclUNIT () >>= fun () -> (* delay for [check_required_library] *) Coqlib.check_required_library ["Coq";"omega";"Omega"]; reset_all (); destructure_goal |
