Hi Mikael, Mikael Djurfeldt <mik...@djurfeldt.com> skribis:
> You'll find the archive guile-scmutils-v0.8.tgz here: > > http://www.cs.rochester.edu/~gildea/guile-scmutils/ > > You should be able to apply the attached patch and then be able to run > it under guile-2.0 Nice! > +(cond-expand (guile-2 > + (define-syntax define-integrable > + (syntax-rules () > + ((_ form body ...) (define form body ...))))) You can actually use ‘define-inlinable’ here (info "(guile) Inlinable Procedures"). Ludo’.