[PATCH] add rnrs unicode to the compound rnrs module

2010-06-19 Thread Andreas Rottmann
The compound module (rnrs) was missing (rnrs unicode). From: Andreas Rottmann a.rottm...@gmx.at Subject: add rnrs unicode to the compound rnrs module * module/rnrs.scm: import rnrs unicode and export all of its procedures. --- module/rnrs.scm | 16 ++-- 1 files changed, 14

[PATCH] Ignore the SRFI name component(s) in R6RS imports

2010-06-19 Thread Andreas Rottmann
From: Andreas Rottmann a.rottm...@gmx.at Subject: Ignore the SRFI name component(s) in R6RS imports * module/ice-9/r6rs-libraries.scm (resolve-r6rs-interface): To avoid having to create alias libraries for all the SRFIs, we simply ignore the name components, so (srfi :n foo bar) will resolve

Static Asserts

2010-06-19 Thread Noah Lavine
Hello, I discovered that my previous build failure was not because of a Makefile issue but because my modifications had changed the size of struct scm_objcode, which broke other parts of the program. I found several files where structs are cast from bytes using #define'd values, which are most

Re: [Guile-commits] GNU Guile branch, master, updated. release_1-9-11-103-gc399333

2010-06-19 Thread Ludovic Courtès
Hi, Andy Wingo wi...@pobox.com writes: +(define (open-string-input-port str) + Open an input port that will read from @var{str}. + (open-input-string str)) + +(define (open-string-output-port) + Return two values: an output port that will collect characters written to it +as a