* Guile 1.4.1.110 available
@ 2007-09-22 22:05 Thien-Thi Nguyen
0 siblings, 0 replies; only message in thread
From: Thien-Thi Nguyen @ 2007-09-22 22:05 UTC (permalink / raw)
To: guile-sources; +Cc: guile-user
release notes:
bugfix + more static.
thi
NEWS excerpt:
- 1.4.1.110 | 2007-09-22
- bugfix: scan-md-module handles new ABI more robustly
Previously, the module ABI (introduced with Guile 1.4.1.108)
would not be recognized in the case where objdump(1) decides to
actually disassemble "data" (as requested by scan-md-module).
Now, scan-md-module requests full section hexdump and no longer
requests disassebly. This is slower but less error-prone.
- new EXPERIMENTAL member to scm_smob_descriptor: tcset
- new EXPERIMENTAL member to scm_module_initspec: smobs
More precisely, the smob descriptor now has `long int *tcset'
and the module initspec has `scm_smob_descriptor *smobs'.
Together, these extend the module ABI to allow fully-declarative
specification of smob types required by the module. Outside
this particular context, you can convert, for example:
long foo = scm_make_smob_type ("foo", 0);
scm_set_smob_mark (foo, mark_foo);
scm_set_smob_print (foo, print_foo);
to:
long foo;
scm_smob_descriptor s =
{ "foo", 0, mark_foo, NULL, print_foo, NULL, &foo };
*s.tcset = scm_make_smob_type_mfpe
(s.name, s.size, s.mark, s.free, s.print, s.equalp);
Feel the table-driven power!
tarball, online docs, etc, in dir:
http://www.gnuvola.org/software/guile/
atom feed:
http://www.gnuvola.org/NEWS.xml.gz
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-09-22 22:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-22 22:05 Guile 1.4.1.110 available Thien-Thi Nguyen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).