Goal.norm_hhf_protected;
authorwenzelm
Sat, 19 Nov 2005 14:21:08 +0100
changeset 18211 8f3973d3b2f0
parent 18210 ad4b8567f6eb
child 18212 1945ae1668d2
Goal.norm_hhf_protected;
src/Pure/Isar/proof_context.ML
--- a/src/Pure/Isar/proof_context.ML	Sat Nov 19 14:21:07 2005 +0100
+++ b/src/Pure/Isar/proof_context.ML	Sat Nov 19 14:21:08 2005 +0100
@@ -721,7 +721,7 @@
     val asms = Library.drop (length (assumptions_of outer), assumptions_of inner);
     val exp_asms = map (fn (cprops, exp) => exp is_goal cprops) asms;
   in
-    Goal.norm_hhf'
+    Goal.norm_hhf_protected
     #> Seq.EVERY (rev exp_asms)
     #> Seq.map (fn rule =>
       let
@@ -732,7 +732,7 @@
       in
         rule
         |> Drule.forall_intr_list frees
-        |> Goal.norm_hhf'
+        |> Goal.norm_hhf_protected
         |> Drule.tvars_intr_list tfrees |> #2
       end)
   end;