src/Pure/PIDE/xml.ML
changeset 69574 b4ea943ce0b7
parent 69345 6bd63c94cf62
child 69804 9efccbad7d42
equal deleted inserted replaced
69573:c7a69b6cd405 69574:b4ea943ce0b7
   292 type 'a V = 'a -> string list * body;
   292 type 'a V = 'a -> string list * body;
   293 
   293 
   294 
   294 
   295 (* atomic values *)
   295 (* atomic values *)
   296 
   296 
   297 fun int_atom i = signed_string_of_int i;
   297 fun int_atom i = Value.print_int i;
   298 
   298 
   299 fun bool_atom false = "0"
   299 fun bool_atom false = "0"
   300   | bool_atom true = "1";
   300   | bool_atom true = "1";
   301 
   301 
   302 fun unit_atom () = "";
   302 fun unit_atom () = "";