src/ZF/Tools/induct_tacs.ML
changeset 74563 042041c0ebeb
parent 74561 8e6c973003c8
child 78022 c078a33c2dff
--- a/src/ZF/Tools/induct_tacs.ML	Wed Oct 20 20:04:28 2021 +0200
+++ b/src/ZF/Tools/induct_tacs.ML	Wed Oct 20 20:25:33 2021 +0200
@@ -177,11 +177,11 @@
 val _ =
   Theory.setup
     (Method.setup \<^binding>\<open>induct_tac\<close>
-      (Args.goal_spec -- Scan.lift (Args.embedded -- Parse.for_fixes) >>
+      (Args.goal_spec -- Scan.lift (Parse.embedded -- Parse.for_fixes) >>
         (fn (quant, (s, xs)) => fn ctxt => SIMPLE_METHOD'' quant (induct_tac ctxt s xs)))
       "induct_tac emulation (dynamic instantiation!)" #>
     Method.setup \<^binding>\<open>case_tac\<close>
-     (Args.goal_spec -- Scan.lift (Args.embedded -- Parse.for_fixes) >>
+     (Args.goal_spec -- Scan.lift (Parse.embedded -- Parse.for_fixes) >>
         (fn (quant, (s, xs)) => fn ctxt => SIMPLE_METHOD'' quant (exhaust_tac ctxt s xs)))
       "datatype case_tac emulation (dynamic instantiation!)");