src/HOL/ex/Recdef.ML
changeset 4089 96fba19bcbe2
parent 3919 c036caebfc75
child 4423 a129b817b58a
--- a/src/HOL/ex/Recdef.ML	Mon Nov 03 12:12:10 1997 +0100
+++ b/src/HOL/ex/Recdef.ML	Mon Nov 03 12:13:18 1997 +0100
@@ -13,7 +13,7 @@
 
 goal thy "(x mem qsort (ord,l)) = (x mem l)";
 by (res_inst_tac [("u","ord"),("v","l")] qsort.induct 1);
-by (ALLGOALS (asm_simp_tac (!simpset addsplits [expand_if])));
+by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if])));
 by (Blast_tac 1);
 qed "qsort_mem_stable";
 
@@ -30,7 +30,7 @@
 
 goal thy "g x = 0";
 by (res_inst_tac [("u","x")] g.induct 1);
-by (ALLGOALS (asm_simp_tac (!simpset addsimps [g_terminates])));
+by (ALLGOALS (asm_simp_tac (simpset() addsimps [g_terminates])));
 qed "g_zero";
 
 (*** the contrived `mapf' ***)