src/Pure/ML-Systems/polyml-5.0.ML
changeset 22144 c33450acd873
parent 21923 663108ee4eef
child 23139 aa899bce7c3b
--- a/src/Pure/ML-Systems/polyml-5.0.ML	Sun Jan 21 13:27:41 2007 +0100
+++ b/src/Pure/ML-Systems/polyml-5.0.ML	Sun Jan 21 16:43:42 2007 +0100
@@ -12,9 +12,7 @@
 
 (* improved versions of use_text/file *)
 
-local
-
-fun use_ml name (print, err) verbose txt =
+fun use_text name (print, err) verbose txt =
   let
     val in_buffer = ref (explode txt);
     val out_buffer = ref ([]: string list);
@@ -37,14 +35,8 @@
     if verbose then print (output ()) else ()
   end;
 
-in
-
-fun use_text output = use_ml "ML text" output;
-
 fun use_file output verbose name =
   let
     val instream = TextIO.openIn name;
     val txt = TextIO.inputAll instream before TextIO.closeIn instream;
-  in use_ml name output verbose txt end;
-
-end;
+  in use_text name output verbose txt end;