src/HOL/Tools/inductive_set.ML
changeset 36960 01594f816e3a
parent 36945 9bec62c10714
child 37136 e0c9d3e49e15
--- a/src/HOL/Tools/inductive_set.ML	Mon May 17 15:11:25 2010 +0200
+++ b/src/HOL/Tools/inductive_set.ML	Mon May 17 23:54:15 2010 +0200
@@ -562,18 +562,14 @@
 
 (* outer syntax *)
 
-local structure P = OuterParse and K = OuterKeyword in
-
 val ind_set_decl = Inductive.gen_ind_decl add_ind_set_def;
 
 val _ =
-  OuterSyntax.local_theory' "inductive_set" "define inductive sets" K.thy_decl
+  Outer_Syntax.local_theory' "inductive_set" "define inductive sets" Keyword.thy_decl
     (ind_set_decl false);
 
 val _ =
-  OuterSyntax.local_theory' "coinductive_set" "define coinductive sets" K.thy_decl
+  Outer_Syntax.local_theory' "coinductive_set" "define coinductive sets" Keyword.thy_decl
     (ind_set_decl true);
 
 end;
-
-end;