tuned;
authorwenzelm
Thu, 03 Jan 2019 12:34:26 +0100
changeset 69574 b4ea943ce0b7
parent 69573 c7a69b6cd405
child 69575 f77cc54f6d47
tuned;
src/Pure/PIDE/xml.ML
src/Pure/config.ML
--- 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;