src/Pure/Isar/method.ML
changeset 18474 180c99dfbad4
parent 18418 bf448d999b7e
child 18640 61627ae3ddc3
--- a/src/Pure/Isar/method.ML	Thu Dec 22 00:29:04 2005 +0100
+++ b/src/Pure/Isar/method.ML	Thu Dec 22 00:29:06 2005 +0100
@@ -141,10 +141,9 @@
 fun RAW_METHOD tac = RAW_METHOD_CASES (NO_CASES o tac);
 
 fun METHOD_CASES tac = RAW_METHOD_CASES (fn facts =>
-  Seq.THEN (TRY Tactic.conjunction_tac, tac facts));
+  Seq.THEN (ALLGOALS Tactic.conjunction_tac, tac facts));
 
-fun METHOD tac = RAW_METHOD (fn facts =>
-  TRY Tactic.conjunction_tac THEN tac facts);
+fun METHOD tac = RAW_METHOD (fn facts => ALLGOALS Tactic.conjunction_tac THEN tac facts);
 
 val fail = METHOD (K no_tac);
 val succeed = METHOD (K all_tac);