Some development of dictionary. Not finished at all!
[idzebra-moved-to-github.git] / dict / close.c
index 3c8cddf..97e7035 100644 (file)
@@ -4,7 +4,13 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: close.c,v $
- * Revision 1.1  1994-08-16 16:26:47  adam
+ * Revision 1.3  1994-08-18 12:40:52  adam
+ * Some development of dictionary. Not finished at all!
+ *
+ * Revision 1.2  1994/08/17  13:32:19  adam
+ * Use cache in dict - not in bfile.
+ *
+ * Revision 1.1  1994/08/16  16:26:47  adam
  * Added dict.
  *
  */
@@ -20,8 +26,8 @@ int dict_close (Dict dict)
 {
     assert (dict);
     
-    bf_close (dict->bf);
-    free (dict);
+    dict_bf_close (dict->dbf);
+    xfree (dict);
     return 0;
 }