From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Greg J. Badros" To: Mikael Djurfeldt Cc: Ariel Rios , Marius Vollmer , guile@sourceware.cygnus.com, guile-gtk@sourceware.cygnus.com, djurfeldt@nada.kth.se Subject: Re: Patch to make guile-gtk work with upcoming guile-1.4 Date: Mon, 19 Jun 2000 14:11:00 -0000 Message-id: References: <200006020301.WAA23978@erin.galway.com.mx> X-SW-Source: 2000-q2/msg00054.html Mikael Djurfeldt writes: > "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. I'd much prefer that this function not be depracated... notice all of the redundancies and potential maintenance headaches below. People *will* cut and paste from one section to another, change the *_hook in the first line, and forget to change it in later lines, resulting in a hard-to-find and nasty bug. Greg > > 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);