tuned;
authorwenzelm
Thu, 24 Sep 2020 19:33:33 +0200
changeset 72289 32d5e474633a
parent 72288 03628da91b07
child 72290 811d5eec65a6
tuned;
src/HOL/Library/code_test.ML
--- a/src/HOL/Library/code_test.ML	Thu Sep 24 19:04:47 2020 +0200
+++ b/src/HOL/Library/code_test.ML	Thu Sep 24 19:33:33 2020 +0200
@@ -299,18 +299,17 @@
     val code_path = Path.append dir (Path.basic "generated.sml")
     val driver_path = Path.append dir (Path.basic "driver.sml")
     val out_path = Path.append dir (Path.basic "out")
-    val string = ML_Syntax.print_string
     val driver = \<^verbatim>\<open>
 fun main prog_name =
   let
-    fun format (true, _) = \<close> ^ string successN ^ \<^verbatim>\<open> ^ "\n"
-      | format (false, NONE) = \<close> ^ string failureN ^ \<^verbatim>\<open> ^ "\n"
-      | format (false, SOME t) = \<close> ^ string failureN ^ \<^verbatim>\<open> ^ t () ^ "\n"
+    fun format (true, _) = \<close> ^ ML_Syntax.print_string successN ^ \<^verbatim>\<open> ^ "\n"
+      | format (false, NONE) = \<close> ^ ML_Syntax.print_string failureN ^ \<^verbatim>\<open> ^ "\n"
+      | format (false, SOME t) = \<close> ^ ML_Syntax.print_string failureN ^ \<^verbatim>\<open> ^ t () ^ "\n"
     val result = \<close> ^ value_name ^ \<^verbatim>\<open> ()
     val result_text = \<close> ^
-      string start_markerN ^
+      ML_Syntax.print_string start_markerN ^
       \<^verbatim>\<open> ^ String.concat (map format result) ^ \<close> ^
-      string end_markerN ^ \<^verbatim>\<open>
+      ML_Syntax.print_string end_markerN ^ \<^verbatim>\<open>
     val out = BinIO.openOut \<close> ^ ML_Syntax.print_platform_path out_path ^ \<^verbatim>\<open>
     val _ = BinIO.output (out, Byte.stringToBytes result_text)
     val _ = BinIO.closeOut out