From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mikael Djurfeldt To: Ariel Rios Cc: djurfeldt@nada.kth.se Subject: Re: Patch to make guile-gtk work with upcoming guile-1.4 Date: Mon, 19 Jun 2000 02:06:00 -0000 Message-id: References: <200006020301.WAA23978@erin.galway.com.mx> X-SW-Source: 2000-q2/msg00053.html "Greg J. Badros" writes: > + tc16_gtkobj_marker_hook = scm_make_smob_type_mfpe("gtkobj_marker_hook", > + sizeof(sgtk_object_proxy), > + gtkobj_marker_hook, > + NULL, > + gtkobj_marker_hook_print, > + NULL); (Thanks to Greg for the patch.) Just a small comment: The `scm_make_smob_type_mfpe' function has not been mentioned in the NEWS file because it might become deprecated in next release of Guile. Please instead use the standard interface: tc16_gtkobj_marker_hook = scm_make_smob_type ("gtkobj_marker_hook", sizeof (sgtk_object_proxy)); scm_set_smob_mark (tc16_gtkobj_marker_hook, gtkobj_marker_hook); scm_set_smob_print (tc16_gtkobj_marker_hook, gtkobj_marker_hook_print);