# HG changeset patch # User wenzelm # Date 1122916842 -7200 # Node ID 02cd0c8b96d91b0fef7c7bf3f2403b2ad8925b95 # Parent 9ed901d738baf3acd4f7d146d73e5b807408d34f Compress.typ; diff -r 9ed901d738ba -r 02cd0c8b96d9 src/Pure/sign.ML --- a/src/Pure/sign.ML Mon Aug 01 19:20:41 2005 +0200 +++ b/src/Pure/sign.ML Mon Aug 01 19:20:42 2005 +0200 @@ -672,7 +672,7 @@ fun gen_add_consts prep_typ raw_args thy = let - val prepT = compress_type o Type.varifyT o Type.no_tvars o Term.no_dummyT o prep_typ thy; + val prepT = Compress.typ thy o Type.varifyT o Type.no_tvars o Term.no_dummyT o prep_typ thy; fun prep (c, T, mx) = ((c, prepT T, mx) handle TYPE (msg, _, _) => error msg) handle ERROR => error ("in declaration of constant " ^ quote (Syntax.const_name c mx)); val args = map prep raw_args;