diff src/mono_shake.sml @ 687:a3ddf05fb3e3

On start-up, delete/nullify rows mentioning clients or channels
author Adam Chlipala <adamc@hcoop.net>
date Thu, 02 Apr 2009 11:42:26 -0400
parents 9a2c18dab11d
children f152f215a02c
line wrap: on
line diff
--- a/src/mono_shake.sml	Thu Apr 02 10:57:14 2009 -0400
+++ b/src/mono_shake.sml	Thu Apr 02 11:42:26 2009 -0400
@@ -45,7 +45,7 @@
     let
         val page_es = List.foldl
                           (fn ((DExport (_, _, n, _, _), _), page_es) => n :: page_es
-                            | ((DDatabase (_, n), _), page_es) => n :: page_es
+                            | ((DDatabase {expunge = n1, initialize = n2, ...}, _), page_es) => n1 :: n2 :: page_es
                             | (_, page_es) => page_es) [] file
 
         val (cdef, edef) = foldl (fn ((DDatatype (_, n, xncs), _), (cdef, edef)) =>