diff src/gui.c @ 3263:d674024a8674

[xemacs-hg @ 2006-02-27 16:29:00 by crestani] - Introduce a fancy asynchronous finalization strategy on C level. - Merge the code conditioned on MC_ALLOC into the code conditioned on NEW_GC. - Remove the possibility to free objects manually outside garbage collections when the new collector is enabled.
author crestani
date Mon, 27 Feb 2006 16:29:29 +0000
parents 1e7cc382eb16
children 8f1ee2d15784
line wrap: on
line diff
--- a/src/gui.c	Sun Feb 26 22:51:04 2006 +0000
+++ b/src/gui.c	Mon Feb 27 16:29:29 2006 +0000
@@ -804,15 +804,10 @@
   RETURN_UNGCPRO (ret);
 }
 
-static void
-finalize_gui_item (void *UNUSED (header), int UNUSED (for_disksave))
-{
-}
-
 DEFINE_LRECORD_IMPLEMENTATION ("gui-item", gui_item,
 			       0, /*dumpable-flag*/
 			       mark_gui_item, print_gui_item,
-			       finalize_gui_item, gui_item_equal,
+			       0, gui_item_equal,
 			       gui_item_hash,
 			       gui_item_description,
 			       Lisp_Gui_Item);