src/Pure/Syntax/syntax_phases.ML
changeset 42379 26f64dddf2c6
parent 42360 da8817d01e7c
child 42382 dcd983ee2c29
--- a/src/Pure/Syntax/syntax_phases.ML	Sun Apr 17 20:58:43 2011 +0200
+++ b/src/Pure/Syntax/syntax_phases.ML	Sun Apr 17 21:04:22 2011 +0200
@@ -21,13 +21,13 @@
 (** markup logical entities **)
 
 fun markup_class ctxt c =
-  [Name_Space.markup_entry (Type.class_space (Proof_Context.tsig_of ctxt)) c];
+  [Name_Space.markup (Type.class_space (Proof_Context.tsig_of ctxt)) c];
 
 fun markup_type ctxt c =
-  [Name_Space.markup_entry (Type.type_space (Proof_Context.tsig_of ctxt)) c];
+  [Name_Space.markup (Type.type_space (Proof_Context.tsig_of ctxt)) c];
 
 fun markup_const ctxt c =
-  [Name_Space.markup_entry (Consts.space_of (Proof_Context.consts_of ctxt)) c];
+  [Name_Space.markup (Consts.space_of (Proof_Context.consts_of ctxt)) c];
 
 fun markup_free ctxt x =
   [if can Name.dest_skolem x then Markup.skolem else Markup.free] @