tuned names;
authorwenzelm
Sat, 17 Feb 2024 21:18:23 +0100
changeset 79654 59debf50c9f7
parent 79653 7cfda5c45c79
child 79655 422a6e04cf0f
tuned names;
src/Pure/ML/ml_process.scala
--- a/src/Pure/ML/ml_process.scala	Sat Feb 17 21:13:10 2024 +0100
+++ b/src/Pure/ML/ml_process.scala	Sat Feb 17 21:18:23 2024 +0100
@@ -98,12 +98,12 @@
     val isabelle_tmp = Isabelle_System.tmp_dir("process")
 
     val ml_runtime_options = {
-      val ml_options = Word.explode(Isabelle_System.getenv("ML_OPTIONS"))
+      val ml_options0 = Word.explode(Isabelle_System.getenv("ML_OPTIONS"))
       val ml_options1 =
-        if (ml_options.exists(_.containsSlice("gcthreads"))) ml_options
-        else ml_options ::: List("--gcthreads", options.int("threads").toString)
+        if (ml_options0.exists(_.containsSlice("gcthreads"))) ml_options0
+        else ml_options0 ::: List("--gcthreads", options.int("threads").toString)
       val ml_options2 =
-        if (!Platform.is_windows || ml_options.exists(_.containsSlice("codepage"))) ml_options1
+        if (!Platform.is_windows || ml_options0.exists(_.containsSlice("codepage"))) ml_options1
         else ml_options1 ::: List("--codepage", "utf8")
       ml_options2 ::: List("--exportstats")
     }