src/Pure/compress.ML
changeset 17412 e26cb20ef0cc
parent 17221 6cd180204582
child 20548 8ef25fe585a8
--- a/src/Pure/compress.ML	Thu Sep 15 17:16:55 2005 +0200
+++ b/src/Pure/compress.ML	Thu Sep 15 17:16:56 2005 +0200
@@ -42,11 +42,11 @@
   let
     val typs = #1 (CompressData.get thy);
     fun compress T =
-      (case Typtab.curried_lookup (! typs) T of
+      (case Typtab.lookup (! typs) T of
         SOME T' => T'
       | NONE =>
           let val T' = (case T of Type (a, Ts) => Type (a, map compress Ts) | _ => T)
-          in change typs (Typtab.curried_update (T', T')); T' end);
+          in change typs (Typtab.update (T', T')); T' end);
   in compress end;
 
 
@@ -58,9 +58,9 @@
     fun compress (t $ u) = compress t $ compress u
       | compress (Abs (a, T, t)) = Abs (a, T, compress t)
       | compress t =
-          (case Termtab.curried_lookup (! terms) t of
+          (case Termtab.lookup (! terms) t of
             SOME t' => t'
-          | NONE => (change terms (Termtab.curried_update (t, t)); t));
+          | NONE => (change terms (Termtab.update (t, t)); t));
   in compress o map_term_types (typ thy) end;
 
 end;