src/Pure/axclass.ML
changeset 59859 f9d1442c70f3
parent 59621 291934bac95e
child 60801 7664e0916eec
--- a/src/Pure/axclass.ML	Mon Mar 30 22:34:59 2015 +0200
+++ b/src/Pure/axclass.ML	Tue Mar 31 00:11:54 2015 +0200
@@ -362,7 +362,7 @@
         (Binding.name (Thm.def_name c'), Logic.mk_equals (Const (c, T'), const'))
       #>> apsnd Thm.varifyT_global
       #-> (fn (_, thm) => add_inst_param (c, tyco) (c'', thm)
-        #> Global_Theory.add_thm ((Binding.conceal (Binding.name c'), thm), [])
+        #> Global_Theory.add_thm ((Binding.concealed (Binding.name c'), thm), [])
         #> #2
         #> pair (Const (c, T))))
     ||> Sign.restore_naming thy
@@ -392,7 +392,7 @@
     val rel = Logic.dest_classrel prop handle TERM _ => err ();
     val (c1, c2) = cert_classrel thy rel handle TYPE _ => err ();
     val binding =
-      Binding.conceal (Binding.name (prefix classrel_prefix (Logic.name_classrel (c1, c2))));
+      Binding.concealed (Binding.name (prefix classrel_prefix (Logic.name_classrel (c1, c2))));
     val (th', thy') = Global_Theory.store_thm (binding, th) thy;
     val th'' = th'
       |> Thm.unconstrainT
@@ -413,7 +413,7 @@
     val arity as (t, Ss, c) = Logic.dest_arity prop handle TERM _ => err ();
 
     val binding =
-      Binding.conceal (Binding.name (prefix arity_prefix (Logic.name_arity arity)));
+      Binding.concealed (Binding.name (prefix arity_prefix (Logic.name_arity arity)));
     val (th', thy') = Global_Theory.store_thm (binding, th) thy;
 
     val args = Name.invent_names Name.context Name.aT Ss;