equal
deleted
inserted
replaced
21 def unapplySeq(list: List[String]): Option[List[List[String]]] = Some(chunks(list)) |
21 def unapplySeq(list: List[String]): Option[List[List[String]]] = Some(chunks(list)) |
22 } |
22 } |
23 |
23 |
24 var debug = false |
24 var debug = false |
25 |
25 |
26 def tool(body: => Unit) |
26 def tool(body: => Unit): Unit = |
27 { |
27 { |
28 val thread = |
28 val thread = |
29 Isabelle_Thread.fork(name = "command_line", inherit_locals = true) { |
29 Isabelle_Thread.fork(name = "command_line", inherit_locals = true) { |
30 val rc = |
30 val rc = |
31 try { body; 0 } |
31 try { body; 0 } |