Changed type of Logic.strip_horn.
--- a/src/Pure/goals.ML Mon Oct 21 17:07:27 2002 +0200
+++ b/src/Pure/goals.ML Mon Oct 21 17:07:58 2002 +0200
@@ -746,7 +746,7 @@
fun prepare_proof atomic rths chorn =
let val {sign, t=horn,...} = rep_cterm chorn;
val _ = Term.no_dummy_patterns horn handle TERM (msg, _) => error msg;
- val (_,As,B) = Logic.strip_horn(horn);
+ val (As, B) = Logic.strip_horn horn;
val atoms = atomic andalso
forall (fn t => not(Logic.is_implies t orelse Logic.is_all t)) As;
val (As,B) = if atoms then ([],horn) else (As,B);