src/ZF/Tools/induct_tacs.ML
changeset 36954 ef698bd61057
parent 36945 9bec62c10714
child 36960 01594f816e3a
--- a/src/ZF/Tools/induct_tacs.ML	Sat May 15 23:40:00 2010 +0200
+++ b/src/ZF/Tools/induct_tacs.ML	Sun May 16 00:02:11 2010 +0200
@@ -191,10 +191,10 @@
 val _ = List.app OuterKeyword.keyword ["elimination", "induction", "case_eqns", "recursor_eqns"];
 
 val rep_datatype_decl =
-  (P.$$$ "elimination" |-- P.!!! SpecParse.xthm) --
-  (P.$$$ "induction" |-- P.!!! SpecParse.xthm) --
-  (P.$$$ "case_eqns" |-- P.!!! SpecParse.xthms1) --
-  Scan.optional (P.$$$ "recursor_eqns" |-- P.!!! SpecParse.xthms1) []
+  (P.$$$ "elimination" |-- P.!!! Parse_Spec.xthm) --
+  (P.$$$ "induction" |-- P.!!! Parse_Spec.xthm) --
+  (P.$$$ "case_eqns" |-- P.!!! Parse_Spec.xthms1) --
+  Scan.optional (P.$$$ "recursor_eqns" |-- P.!!! Parse_Spec.xthms1) []
   >> (fn (((x, y), z), w) => rep_datatype x y z w);
 
 val _ =