use_file: added ``tune'' argument;
authorwenzelm
Sun, 16 Sep 2007 20:25:43 +0200
changeset 24605 98689b0e5956
parent 24604 d5c5d2e13fbf
child 24606 7acbb982fc77
use_file: added ``tune'' argument;
src/Pure/ML-Systems/polyml-5.0.ML
--- a/src/Pure/ML-Systems/polyml-5.0.ML	Sun Sep 16 15:36:57 2007 +0200
+++ b/src/Pure/ML-Systems/polyml-5.0.ML	Sun Sep 16 20:25:43 2007 +0200
@@ -34,8 +34,8 @@
     if verbose then print (output ()) else ()
   end;
 
-fun use_file output verbose name =
+fun use_file tune output verbose name =
   let
     val instream = TextIO.openIn name;
     val txt = TextIO.inputAll instream before TextIO.closeIn instream;
-  in use_text name output verbose txt end;
+  in use_text tune name output verbose txt end;