src/Pure/Isar/proof_context.ML
changeset 52223 5bb6ae8acb87
parent 52156 576aceb343dc
child 53378 07990ba8c0ea
--- a/src/Pure/Isar/proof_context.ML	Wed May 29 16:12:05 2013 +0200
+++ b/src/Pure/Isar/proof_context.ML	Wed May 29 18:25:11 2013 +0200
@@ -869,9 +869,17 @@
 
 (* fact_tac *)
 
+local
+
+fun comp_hhf_tac th i st =
+  PRIMSEQ (Thm.bicompose {flatten = true, match = false, incremented = true}
+    (false, Drule.lift_all (Thm.cprem_of st i) th, 0) i) st;
+
 fun comp_incr_tac [] _ = no_tac
   | comp_incr_tac (th :: ths) i =
-      (fn st => Goal.compose_hhf_tac (Drule.incr_indexes st th) i st) APPEND comp_incr_tac ths i;
+      (fn st => comp_hhf_tac (Drule.incr_indexes st th) i st) APPEND comp_incr_tac ths i;
+
+in
 
 fun fact_tac facts = Goal.norm_hhf_tac THEN' comp_incr_tac facts;
 
@@ -880,6 +888,8 @@
 
 fun some_fact_tac ctxt = SUBGOAL (fn (goal, i) => fact_tac (potential_facts ctxt goal) i);
 
+end;
+
 
 (* get_thm(s) *)