--- a/src/Provers/clasimp.ML Wed Sep 01 21:22:38 1999 +0200
+++ b/src/Provers/clasimp.ML Wed Sep 01 21:22:56 1999 +0200
@@ -156,10 +156,10 @@
val clasimp_args = Method.only_sectioned_args clasimp_modifiers;
fun clasimp_meth tac ctxt = Method.METHOD (fn facts =>
- ALLGOALS (Method.same_tac facts) THEN tac (get_local_clasimpset ctxt));
+ ALLGOALS (Method.insert_tac facts) THEN tac (get_local_clasimpset ctxt));
fun clasimp_meth' tac ctxt = Method.METHOD (fn facts =>
- FIRSTGOAL (Method.same_tac facts THEN' tac (get_local_clasimpset ctxt)));
+ FIRSTGOAL (Method.insert_tac facts THEN' tac (get_local_clasimpset ctxt)));
val clasimp_method = clasimp_args o clasimp_meth;
val clasimp_method' = clasimp_args o clasimp_meth';