src/Pure/General/pretty.ML
changeset 32966 5b21661fe618
parent 32784 1a5dde5079ac
child 36687 58020b59baf7
--- a/src/Pure/General/pretty.ML	Sat Oct 17 15:55:57 2009 +0200
+++ b/src/Pure/General/pretty.ML	Sat Oct 17 15:57:51 2009 +0200
@@ -53,7 +53,7 @@
   val indent: int -> T -> T
   val unbreakable: T -> T
   val setmargin: int -> unit
-  val setmp_margin: int -> ('a -> 'b) -> 'a -> 'b
+  val setmp_margin_CRITICAL: int -> ('a -> 'b) -> 'a -> 'b
   val setdepth: int -> unit
   val to_ML: T -> ML_Pretty.pretty
   val from_ML: ML_Pretty.pretty -> T
@@ -188,7 +188,7 @@
 
 val margin_info = Unsynchronized.ref (make_margin_info 76);
 fun setmargin m = margin_info := make_margin_info m;
-fun setmp_margin m f = setmp margin_info (make_margin_info m) f;
+fun setmp_margin_CRITICAL m f = setmp_CRITICAL margin_info (make_margin_info m) f;
 
 
 (* depth limitation *)