diff -r 89c1f40656e5 -r 17b8528c2f53 src/Pure/Admin/check_sources.scala --- a/src/Pure/Admin/check_sources.scala Sun May 14 15:16:38 2017 +0200 +++ b/src/Pure/Admin/check_sources.scala Sun May 14 15:34:20 2017 +0200 @@ -49,7 +49,7 @@ Output.writeln("Checking " + root + " ...") val hg = Mercurial.repository(root) for { - file <- hg.manifest() + file <- hg.known_files() if file.endsWith(".thy") || file.endsWith(".ML") || file.endsWith("/ROOT") } check_file(root + Path.explode(file)) } @@ -63,7 +63,7 @@ val getopts = Getopts(""" Usage: isabelle check_sources [ROOT_DIRS...] - Check .thy, .ML, ROOT files from manifest of Mercurial ROOT_DIRS. + Check .thy, .ML, ROOT against known files of Mercurial ROOT_DIRS. """) val specs = getopts(args)