src/Pure/System/isabelle_process.scala
changeset 38262 bb2df73fab2c
parent 38259 2b61c5e27399
child 38270 71bb3c273dd1
--- a/src/Pure/System/isabelle_process.scala	Tue Aug 10 14:24:13 2010 +0200
+++ b/src/Pure/System/isabelle_process.scala	Tue Aug 10 15:12:45 2010 +0200
@@ -342,15 +342,6 @@
     command_input ! Input(" \\<^sync>\n; " + text + " \\<^sync>;\n")
   }
 
-  def command(text: String) = input("Isabelle.command " + Isabelle_Syntax.encode_string(text))
-
-  def command(props: List[(String, String)], text: String) =
-    input("Isabelle.command " + Isabelle_Syntax.encode_properties(props) + " " +
-      Isabelle_Syntax.encode_string(text))
-
-  def ML_val(text: String) = input("ML_val " + Isabelle_Syntax.encode_string(text))
-  def ML_command(text: String) = input("ML_command " + Isabelle_Syntax.encode_string(text))
-
   def close() = synchronized {    // FIXME avoid synchronized
     command_input ! Close
     closing = true