tuned;
authorwenzelm
Sat, 03 Mar 2012 17:46:50 +0100
changeset 46773 94259b352ed3
parent 46772 be21f050eda4
child 46774 38f113b052b1
tuned;
src/Pure/System/isabelle_process.scala
--- a/src/Pure/System/isabelle_process.scala	Sat Mar 03 17:30:14 2012 +0100
+++ b/src/Pure/System/isabelle_process.scala	Sat Mar 03 17:46:50 2012 +0100
@@ -182,8 +182,8 @@
       val (command_stream, message_stream) = system_channel.rendezvous()
 
       standard_input = stdin_actor()
-      val stdout = raw_output_actor(false)
-      val stderr = raw_output_actor(true)
+      val stdout = physical_output_actor(false)
+      val stderr = physical_output_actor(true)
       command_input = input_actor(command_stream)
       val message = message_actor(message_stream)
 
@@ -213,7 +213,7 @@
 
   /** stream actors **/
 
-  /* raw stdin */
+  /* physical stdin */
 
   private def stdin_actor(): (Thread, Actor) =
   {
@@ -241,9 +241,9 @@
   }
 
 
-  /* raw output */
+  /* physical output */
 
-  private def raw_output_actor(err: Boolean): (Thread, Actor) =
+  private def physical_output_actor(err: Boolean): (Thread, Actor) =
   {
     val (name, reader, markup) =
       if (err) ("standard_error", process.stderr, Isabelle_Markup.STDERR)