eval command line: show results;
authorwenzelm
Tue, 26 Apr 2005 19:52:17 +0200
changeset 15851 6b445e021bc8
parent 15850 30e878979457
child 15852 4f1a78454452
eval command line: show results; tuned;
src/Pure/ML-Systems/polyml.ML
--- a/src/Pure/ML-Systems/polyml.ML	Tue Apr 26 19:51:56 2005 +0200
+++ b/src/Pure/ML-Systems/polyml.ML	Tue Apr 26 19:52:17 2005 +0200
@@ -87,7 +87,7 @@
 local
   fun println s =
     (TextIO.output (TextIO.stdOut, s ^ "\n"); TextIO.flushOut TextIO.stdOut);
-  val eval = use_text (println, println) false;
+  val eval = use_text (println, println) true;
 in
   val _ = PolyML.onEntry (fn () => app eval (CommandLine.arguments ()));
 end;
@@ -165,7 +165,7 @@
   | SOME txt => txt);
 
 
-(* profiling: version that works even with 
+(* profiling: version that works even with
 ML{*profiling 1*}
 apply \\<dots>
 ML{*profiling 0*}
@@ -183,18 +183,16 @@
   structure IO =
   struct
   open OriginalIO
-  val mkTextReader = mkReader 
-  val mkTextWriter = mkWriter 
+  val mkTextReader = mkReader
+  val mkTextWriter = mkWriter
   end;
 end;
 
-(** This extension of the Poly/ML Signal structure is only necessary
-    because in SML/NJ, types Posix.Signal.signal and Signals.signal differ.**)
-
+(*This extension of the Poly/ML Signal structure is only necessary
+  because in SML/NJ, types Posix.Signal.signal and Signals.signal differ.*)
 structure IsaSignal =
 struct
-open Signal
-val usr1 = Posix.Signal.usr1 
-val usr2 = Posix.Signal.usr2 
+  open Signal
+  val usr1 = Posix.Signal.usr1
+  val usr2 = Posix.Signal.usr2
 end;
-