src/Pure/defs.ML
changeset 19025 596fb1eb7856
parent 17994 6a1a49cba5b3
child 19040 88d25a6c346a
--- a/src/Pure/defs.ML	Sun Feb 12 20:32:59 2006 +0100
+++ b/src/Pure/defs.ML	Sun Feb 12 21:34:18 2006 +0100
@@ -76,8 +76,8 @@
     val consts' = (consts1, consts2) |> Graph.merge_acyclic (K true)
       handle Graph.CYCLES cycles => err_cyclic cycles;
     val specified' = (specified1, specified2) |> Symtab.join (fn c => fn (orig_specs1, specs2) =>
-      SOME (Inttab.fold (fn spec2 => fn specs1 =>
-        (check_specified c spec2 orig_specs1; Inttab.update spec2 specs1)) specs2 orig_specs1));
+      Inttab.fold (fn spec2 => fn specs1 =>
+        (check_specified c spec2 orig_specs1; Inttab.update spec2 specs1)) specs2 orig_specs1);
   in make_defs (consts', specified') end;
 
 end;