# HG changeset patch # User wenzelm # Date 1676926045 -3600 # Node ID 7a6fa60298cdd2602395fc148073719329d94077 # Parent 87698fe320bbf56e1904aca169c1eb8b038071fa tuned: avoid redundant white space; diff -r 87698fe320bb -r 7a6fa60298cd src/Pure/ML/ml_process.scala --- a/src/Pure/ML/ml_process.scala Mon Feb 20 21:40:52 2023 +0100 +++ b/src/Pure/ML/ml_process.scala Mon Feb 20 21:47:25 2023 +0100 @@ -117,9 +117,9 @@ bash_env.put("ISABELLE_TMP", File.standard_path(isabelle_tmp)) bash_env.put("POLYSTATSDIR", isabelle_tmp.getAbsolutePath) - Bash.process( - options.string("ML_process_policy") + """ "$ML_HOME/poly" -q """ + - Bash.strings(bash_args), + val policy = options.string("ML_process_policy") match { case "" => "" case s => s + " " } + + Bash.process(policy + """"$ML_HOME/poly" -q """ + Bash.strings(bash_args), cwd = cwd, env = bash_env, redirect = redirect,