src/Pure/sign.ML
changeset 197 7c7179e687b2
parent 171 ab0f93a291b5
child 200 39a931cc6558
--- a/src/Pure/sign.ML	Mon Dec 13 18:50:03 1993 +0100
+++ b/src/Pure/sign.ML	Tue Dec 14 14:02:52 1993 +0100
@@ -341,10 +341,12 @@
                       Some T => typ_subst_TVars tye T
                     | None => absent ixn;
             val (ct,tye2) = read_def_cterm (sign,types,sorts) (st,T);
-            val cv = cterm_of sign (Var(ixn,typ_subst_TVars tye2 T))
-        in ((cv,ct)::cts,tye2 @ tye) end
+        in ((ixn,T,ct)::cts,tye2 @ tye) end
     val (cterms,tye') = foldl add_cterm (([],tye), vs);
-in (map (fn (ixn,T) => (ixn,ctyp_of sign T)) tye', cterms) end;
+in (map (fn (ixn,T) => (ixn,ctyp_of sign T)) tye',
+    map (fn (ixn,T,ct)=> (cterm_of sign (Var(ixn,typ_subst_TVars tye' T)), ct))
+        cterms)
+end;
 
 end;