aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/field/field.ml42
-rw-r--r--contrib/first-order/g_ground.ml42
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/field/field.ml4 b/contrib/field/field.ml4
index 68650ce04a..57b8cd750f 100644
--- a/contrib/field/field.ml4
+++ b/contrib/field/field.ml4
@@ -156,7 +156,7 @@ let field g =
| _ -> error "The statement is not built from Leibniz' equality" in
let th = VConstr (lookup (pf_env g) typ) in
(interp_tac_gen [(id_of_string "FT",th)] (get_debug ())
- <:tactic< Match Context With [|-(!eq ? ? ?)] -> Field_Gen FT>>) g
+ <:tactic< match context with [|- (@eq _ _ _) ] => Field_Gen FT end >>) g
(* Verifies that all the terms have the same type and gives the right theory *)
let guess_theory env evc = function
diff --git a/contrib/first-order/g_ground.ml4 b/contrib/first-order/g_ground.ml4
index 95b162d288..33e4107f65 100644
--- a/contrib/first-order/g_ground.ml4
+++ b/contrib/first-order/g_ground.ml4
@@ -39,7 +39,7 @@ let _=
in
declare_int_option gdopt
-let default_solver=(Tacinterp.interp <:tactic<Auto with *>>)
+let default_solver=(Tacinterp.interp <:tactic<auto with *>>)
let fail_solver=tclFAIL 0 "GTauto failed"