Re: [Chicken-users] Issue w/ string-trim functions in utf8-srfi-13

2013-09-22 Thread Alex Shinn
On Fri, Sep 20, 2013 at 9:30 AM, Matt Gushee m...@gushee.net wrote: Hi, Alex-- On Thu, Sep 19, 2013 at 5:33 PM, Alex Shinn alexsh...@gmail.com wrote: This looks like an oversight. The fix is simple, but my dev machine just died so it may take me a couple days to get to it. Fair

Re: [Chicken-users] Issue w/ string-trim functions in utf8-srfi-13

2013-09-22 Thread Matt Gushee
On Sun, Sep 22, 2013 at 1:16 AM, Alex Shinn alexsh...@gmail.com wrote: This should work now. Indeed it does! Thank you. -- Matt ___ Chicken-users mailing list Chicken-users@nongnu.org https://lists.nongnu.org/mailman/listinfo/chicken-users

[Chicken-users] Changing string representation for records

2013-09-22 Thread Chris Mueller
Hi, i've currently a generell question about string representation/output for records within the chicken interpreter. Assume: (define-record matrix rows cols data) #;1 (make-matrix 2 1 (f64vector 1 2)) #matrix Is there any possibility to specify the string output for this record instance?

Re: [Chicken-users] Changing string representation for records

2013-09-22 Thread Evan Hanson
Hi Chris, On 2013-09-22 23:58, Chris Mueller wrote: Is there any possibility to specify the string output for this record instance? Take a look at `define-record-printer` (http://api.call-cc.org/doc/chicken/special-forms/define-record-printer), e.g. (define-record-printer matrix