use Thm.close_derivation instead of standard
authorhuffman
Mon, 05 Jan 2009 15:26:57 -0800
changeset 29371 bab4e907d881
parent 29354 6ef5ddf22d3a
child 29372 df457e0d9a55
use Thm.close_derivation instead of standard
src/HOLCF/Tools/cont_proc.ML
--- a/src/HOLCF/Tools/cont_proc.ML	Mon Jan 05 07:54:16 2009 -0800
+++ b/src/HOLCF/Tools/cont_proc.ML	Mon Jan 05 15:26:57 2009 -0800
@@ -73,9 +73,9 @@
   fun lam [] = ([], cont_K)
     | lam (x::ys) =
     let
-      (* should use "standard" for thms that are used multiple times *)
+      (* should use "close_derivation" for thms that are used multiple times *)
       (* it seems to allow for sharing in explicit proof objects *)
-      val x' = standard (k x);
+      val x' = Thm.close_derivation (k x);
       val Lx = x' RS cont_L;
     in (map (fn y => SOME (k y RS Lx)) ys, x') end;