src/ZF/Tools/induct_tacs.ML
changeset 22101 6d13239d5f52
parent 21350 6e58289b6685
child 22846 fb79144af9a3
--- a/src/ZF/Tools/induct_tacs.ML	Fri Jan 19 22:08:07 2007 +0100
+++ b/src/ZF/Tools/induct_tacs.ML	Fri Jan 19 22:08:08 2007 +0100
@@ -199,10 +199,10 @@
 local structure P = OuterParse and K = OuterKeyword in
 
 val rep_datatype_decl =
-  (P.$$$ "elimination" |-- P.!!! P.xthm) --
-  (P.$$$ "induction" |-- P.!!! P.xthm) --
-  (P.$$$ "case_eqns" |-- P.!!! P.xthms1) --
-  Scan.optional (P.$$$ "recursor_eqns" |-- P.!!! P.xthms1) []
+  (P.$$$ "elimination" |-- P.!!! SpecParse.xthm) --
+  (P.$$$ "induction" |-- P.!!! SpecParse.xthm) --
+  (P.$$$ "case_eqns" |-- P.!!! SpecParse.xthms1) --
+  Scan.optional (P.$$$ "recursor_eqns" |-- P.!!! SpecParse.xthms1) []
   >> (fn (((x, y), z), w) => rep_datatype x y z w);
 
 val rep_datatypeP =