src/HOL/HOLCF/Tools/Domain/domain_constructors.ML
changeset 42204 b3277168c1e7
parent 42151 4da4fc77664b
child 42224 578a51fae383
--- a/src/HOL/HOLCF/Tools/Domain/domain_constructors.ML	Sun Apr 03 18:17:21 2011 +0200
+++ b/src/HOL/HOLCF/Tools/Domain/domain_constructors.ML	Sun Apr 03 21:59:33 2011 +0200
@@ -464,13 +464,13 @@
           if n = m then arg1 (n, c) else (Constant @{const_syntax bottom})
       val case_constant = Constant (syntax (case_const dummyT))
       fun case_trans authentic =
-          (if authentic then ParsePrintRule else ParseRule)
+          (if authentic then Parse_Print_Rule else Parse_Rule)
             (app "_case_syntax"
               (Variable "x",
                foldr1 (app "_case2") (map_index (case1 authentic) spec)),
              capp (capps (case_constant, map_index arg1 spec), Variable "x"))
       fun one_abscon_trans authentic (n, c) =
-          (if authentic then ParsePrintRule else ParseRule)
+          (if authentic then Parse_Print_Rule else Parse_Rule)
             (cabs (con1 authentic n c, expvar n),
              capps (case_constant, map_index (when1 n) spec))
       fun abscon_trans authentic =
@@ -479,7 +479,7 @@
           case_trans false :: case_trans true ::
           abscon_trans false @ abscon_trans true
     in
-      val thy = Sign.add_trrules_i trans_rules thy
+      val thy = Sign.add_trrules trans_rules thy
     end
 
     (* prove beta reduction rule for case combinator *)