aboutsummaryrefslogtreecommitdiff
path: root/plugins/fourier
diff options
context:
space:
mode:
authorMaxime Dénès2017-04-27 17:30:54 +0200
committerMaxime Dénès2017-04-27 17:30:54 +0200
commit338f8df5ea59a46b60fcfbe50e122fd6eee0dc52 (patch)
treeac27debb6849cab3e637205578901a92b70a51df /plugins/fourier
parent0bfd1f2a461ec989dbe812b10d8ee39d296bc777 (diff)
parent6d4f2222aa7ff6039f9f386cbc38201a0cd60c08 (diff)
Merge PR#568: Remove tactic compatibility layer
Diffstat (limited to 'plugins/fourier')
-rw-r--r--plugins/fourier/fourierR.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/fourier/fourierR.ml b/plugins/fourier/fourierR.ml
index e11cbc279a..25d8f8c832 100644
--- a/plugins/fourier/fourierR.ml
+++ b/plugins/fourier/fourierR.ml
@@ -617,9 +617,9 @@ let rec fourier () =
[Tacticals.New.tclORELSE
(* TODO : Ring.polynom []*) (Proofview.tclUNIT ())
(Proofview.tclUNIT ());
- Tacticals.New.pf_constr_of_global (cget coq_sym_eqT) (fun symeq ->
+ Tacticals.New.pf_constr_of_global (cget coq_sym_eqT) >>= fun symeq ->
(Tacticals.New.tclTHEN (apply symeq)
- (apply (get coq_Rinv_1))))]
+ (apply (get coq_Rinv_1)))]
)
]));