unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Thien-Thi Nguyen <ttn@gnuvola.org>
To: guile-sources@gnu.org
Cc: guile-user@gnu.org
Subject: Guile 1.4.1.110 available
Date: Sun, 23 Sep 2007 00:05:12 +0200	[thread overview]
Message-ID: <E1IZD68-00063k-Kv@ambire.localdomain> (raw)

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


                 reply	other threads:[~2007-09-22 22:05 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1IZD68-00063k-Kv@ambire.localdomain \
    --to=ttn@gnuvola.org \
    --cc=guile-sources@gnu.org \
    --cc=guile-user@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).