tuned;
authorwenzelm
Sat, 23 Mar 2013 13:04:28 +0100
changeset 51491 38a796ac4ab7
parent 51486 0a0c9a45d294
child 51492 eaa1c4cc1106
tuned;
src/Pure/General/pretty.ML
--- a/src/Pure/General/pretty.ML	Sat Mar 23 07:30:53 2013 +0100
+++ b/src/Pure/General/pretty.ML	Sat Mar 23 13:04:28 2013 +0100
@@ -79,12 +79,13 @@
 (** spaces **)
 
 local
-  val small_spaces = Vector.tabulate (65, fn i => Library.replicate_string i Symbol.space);
+  val small_spaces = Vector.tabulate (65, fn i => replicate_string i Symbol.space);
 in
   fun spaces k =
     if k < 64 then Vector.sub (small_spaces, k)
-    else Library.replicate_string (k div 64) (Vector.sub (small_spaces, 64)) ^
-      Vector.sub (small_spaces, k mod 64);
+    else
+      replicate_string (k div 64) (Vector.sub (small_spaces, 64)) ^
+        Vector.sub (small_spaces, k mod 64);
 end;