tuned;
authorwenzelm
Tue, 12 Jul 2011 23:20:34 +0200
changeset 43789 321ebd051897
parent 43788 e84239a47f32
child 43790 9bd8d4addd6e
tuned;
src/Pure/term_xml.ML
--- a/src/Pure/term_xml.ML	Tue Jul 12 20:53:14 2011 +0200
+++ b/src/Pure/term_xml.ML	Tue Jul 12 23:20:34 2011 +0200
@@ -29,7 +29,7 @@
 val sort = list string;
 
 fun typ T = T |> variant
- [fn Type (a, b) => ([a], (list typ) b),
+ [fn Type (a, b) => ([a], list typ b),
   fn TFree (a, b) => ([a], sort b),
   fn TVar ((a, b), c) => ([a, int_atom b], sort c)];
 
@@ -39,7 +39,7 @@
   fn Var ((a, b), c) => ([a, int_atom b], typ c),
   fn Bound a => ([int_atom a], []),
   fn Abs (a, b, c) => ([a], pair typ term (b, c)),
-  fn a $ b => ([], pair term term (a, b))];
+  fn op $ a => ([], pair term term a)];
 
 end;