diff -r 87ebf5a50283 -r 42267c650205 src/Pure/Admin/check_sources.scala --- a/src/Pure/Admin/check_sources.scala Fri Apr 01 17:06:10 2022 +0200 +++ b/src/Pure/Admin/check_sources.scala Fri Apr 01 23:19:12 2022 +0200 @@ -59,16 +59,17 @@ val isabelle_tool = Isabelle_Tool("check_sources", "some sanity checks for Isabelle sources", - Scala_Project.here, args => { - val getopts = Getopts(""" + Scala_Project.here, + { args => + val getopts = Getopts(""" Usage: isabelle check_sources [ROOT_DIRS...] Check .thy, .ML, ROOT against known files of Mercurial ROOT_DIRS. """) - val specs = getopts(args) - if (specs.isEmpty) getopts.usage() + val specs = getopts(args) + if (specs.isEmpty) getopts.usage() - for (root <- specs) check_hg(Path.explode(root)) - }) + for (root <- specs) check_hg(Path.explode(root)) + }) }