src/HOL/Tools/BNF/bnf_lfp_compat.ML
changeset 59644 cc78fd8d955d
parent 59058 a78612c67ec0
child 59936 b8ffc3dc9e24
--- a/src/HOL/Tools/BNF/bnf_lfp_compat.ML	Fri Mar 06 23:57:01 2015 +0100
+++ b/src/HOL/Tools/BNF/bnf_lfp_compat.ML	Sat Mar 07 00:45:15 2015 +0100
@@ -346,12 +346,12 @@
 
 fun get_all thy prefs =
   let
-    val lthy = Proof_Context.init_global thy;
+    val ctxt = Proof_Context.init_global thy;
     val old_info_tab = Old_Datatype_Data.get_all thy;
     val new_T_names = BNF_FP_Def_Sugar.fp_sugars_of_global thy
       |> map_filter (try (fn {T = Type (s, _), fp_res_index = 0, ...} => s));
     val new_infos =
-      maps (infos_of_new_datatype_mutual_cluster lthy (insert (op =) Keep_Nesting prefs))
+      maps (infos_of_new_datatype_mutual_cluster ctxt (insert (op =) Keep_Nesting prefs))
         new_T_names;
   in
     fold (if member (op =) prefs Keep_Nesting then Symtab.update else Symtab.default) new_infos
@@ -366,8 +366,8 @@
   end;
 
 fun get_info_of_new_datatype prefs thy T_name =
-  let val lthy = Proof_Context.init_global thy in
-    AList.lookup (op =) (infos_of_new_datatype_mutual_cluster lthy prefs T_name) T_name
+  let val ctxt = Proof_Context.init_global thy in
+    AList.lookup (op =) (infos_of_new_datatype_mutual_cluster ctxt prefs T_name) T_name
   end;
 
 fun get_info thy prefs =