src/Pure/System/command_line.scala
changeset 71689 b3f738f12a9a
parent 71687 f17be1db8381
child 71692 f8e52c0152fe
--- a/src/Pure/System/command_line.scala	Sat Apr 04 20:16:25 2020 +0200
+++ b/src/Pure/System/command_line.scala	Sat Apr 04 20:53:36 2020 +0200
@@ -26,7 +26,7 @@
   def tool(body: => Unit)
   {
     val thread =
-      Standard_Thread.fork(name = "isabelle", inherit_locals = true) {
+      Standard_Thread.fork(name = "command_line", inherit_locals = true) {
         val rc =
           try { body; 0 }
           catch {