[ann] first release of guile-rsvg

2007-09-26 Thread Andy Wingo
Hey hackers, I'm a bit sleepy but there are new goodies here: http://wingolog.org/software/guile-rsvg/. For example this fragment renders an SVG as a PDF: (use-modules (cairo) (rsvg) (srfi srfi-11)) (define (svg->pdf in out) (let*-values (((handle) (rsvg-handle-new-from-file in))

Re: reallocating data not covered by gc

2007-09-26 Thread Ludovic Courtès
Hi, Klaus Schilling <[EMAIL PROTECTED]> writes: > Is it dangerous to reallocate from scheme wrapper code > pointers that have been allocated or > declared NULL in code that was executed before boot_guile was called? Guile doesn't care about what you do with libc's malloc/realloc/etc. so you ca