--- a/src/Pure/PIDE/xml.ML Wed Jan 02 21:18:35 2019 +0100
+++ b/src/Pure/PIDE/xml.ML Thu Jan 03 12:34:26 2019 +0100
@@ -294,7 +294,7 @@
(* atomic values *)
-fun int_atom i = signed_string_of_int i;
+fun int_atom i = Value.print_int i;
fun bool_atom false = "0"
| bool_atom true = "1";
--- a/src/Pure/config.ML Wed Jan 02 21:18:35 2019 +0100
+++ b/src/Pure/config.ML Thu Jan 03 12:34:26 2019 +0100
@@ -46,7 +46,7 @@
fun print_value (Bool true) = "true"
| print_value (Bool false) = "false"
- | print_value (Int i) = signed_string_of_int i
+ | print_value (Int i) = Value.print_int i
| print_value (Real x) = Value.print_real x
| print_value (String s) = quote s;