src/Pure/System/isabelle_process.scala
changeset 52582 31467a4b1466
parent 52581 99835e3abca4
child 52799 6a4498b048b7
--- a/src/Pure/System/isabelle_process.scala	Wed Jul 10 21:54:43 2013 +0200
+++ b/src/Pure/System/isabelle_process.scala	Wed Jul 10 22:04:57 2013 +0200
@@ -354,15 +354,15 @@
 
   /** main methods **/
 
-  def input_bytes(name: String, args: Array[Byte]*): Unit =
+  def protocol_command_raw(name: String, args: Array[Byte]*): Unit =
     command_input._2 ! Input_Chunks(UTF8.string_bytes(name) :: args.toList)
 
-  def input(name: String, args: String*)
+  def protocol_command(name: String, args: String*)
   {
     receiver(new Input(name, args.toList))
-    input_bytes(name, args.map(UTF8.string_bytes): _*)
+    protocol_command_raw(name, args.map(UTF8.string_bytes): _*)
   }
 
   def options(opts: Options): Unit =
-    input("Isabelle_Process.options", YXML.string_of_body(opts.encode))
+    protocol_command("Isabelle_Process.options", YXML.string_of_body(opts.encode))
 }