merged
authorwenzelm
Fri, 14 Sep 2018 11:34:21 +0200
changeset 68995 10da16970d82
parent 68993 e66783811518 (current diff)
parent 68994 d961e11e0e87 (diff)
child 68996 5f333f88d2c1
merged
--- a/src/Pure/Tools/update_cartouches.scala	Fri Sep 14 10:07:59 2018 +0200
+++ b/src/Pure/Tools/update_cartouches.scala	Fri Sep 14 11:34:21 2018 +0200
@@ -104,6 +104,6 @@
       for {
         spec <- specs
         file <- File.find_files(Path.explode(spec).file, file => file.getName.endsWith(".thy"))
-      } update_cartouches(replace_text, Path.explode(File.standard_path(file)))
+      } update_cartouches(replace_text, File.path(file))
     })
 }
--- a/src/Pure/Tools/update_comments.scala	Fri Sep 14 10:07:59 2018 +0200
+++ b/src/Pure/Tools/update_comments.scala	Fri Sep 14 11:34:21 2018 +0200
@@ -63,6 +63,6 @@
       for {
         spec <- specs
         file <- File.find_files(Path.explode(spec).file, file => file.getName.endsWith(".thy"))
-      } update_comments(Path.explode(File.standard_path(file)))
+      } update_comments(File.path(file))
     })
 }
--- a/src/Pure/Tools/update_header.scala	Fri Sep 14 10:07:59 2018 +0200
+++ b/src/Pure/Tools/update_header.scala	Fri Sep 14 11:34:21 2018 +0200
@@ -56,6 +56,6 @@
       for {
         spec <- specs
         file <- File.find_files(Path.explode(spec).file, file => file.getName.endsWith(".thy"))
-      } update_header(section, Path.explode(File.standard_path(file)))
+      } update_header(section, File.path(file))
     })
 }
--- a/src/Pure/Tools/update_then.scala	Fri Sep 14 10:07:59 2018 +0200
+++ b/src/Pure/Tools/update_then.scala	Fri Sep 14 11:34:21 2018 +0200
@@ -50,6 +50,6 @@
       for {
         spec <- specs
         file <- File.find_files(Path.explode(spec).file, file => file.getName.endsWith(".thy"))
-      } update_then(Path.explode(File.standard_path(file)))
+      } update_then(File.path(file))
     })
 }
--- a/src/Pure/Tools/update_theorems.scala	Fri Sep 14 10:07:59 2018 +0200
+++ b/src/Pure/Tools/update_theorems.scala	Fri Sep 14 11:34:21 2018 +0200
@@ -52,6 +52,6 @@
     for {
       spec <- specs
       file <- File.find_files(Path.explode(spec).file, file => file.getName.endsWith(".thy"))
-    } update_theorems(Path.explode(File.standard_path(file)))
+    } update_theorems(File.path(file))
   })
 }