Re: rfc: next guile 1.8.x release

2021-01-29 Thread Dr. Arne Babenhauserheide
Ludovic Courtès writes: > Thien-Thi Nguyen skribis: >> I would like to work (on the weekends, so as not to intefere w/ >> ) on preparation and release of Guile 1.8.9, targeted >> for the ides of April (more or less). >> >> Guile 1.8.x users: What changes do you want to see in 1.8.9? I am not a

Re: rfc: next guile 1.8.x release

2021-01-29 Thread Ludovic Courtès
Hi! Thien-Thi Nguyen skribis: > I would like to work (on the weekends, so as not to intefere w/ > ) on preparation and release of Guile 1.8.9, targeted > for the ides of April (more or less). > > Guile 1.8.x users: What changes do you want to see in 1.8.9? > > Guile maintainers: Any tips (proces

Re: MOP issues with

2021-01-29 Thread Thompson, David
Sigh... I screwed up the example code. Here's a fixed version: (use-modules (oop goops) (srfi srfi-111)) (define-class ()) (define (boxed-slot? slot) (get-keyword #:box? (slot-definition-options slot))) (define-method (compute-getter-method (class ) slot

MOP issues with

2021-01-29 Thread Thompson, David
I've been playing around with GOOPS and the metaobject protocol lately. It has been fun, but I've hit a snag with redefinable classes. Here's a contrived example program that demonstrates my problem: (use-modules (oop goops) (srfi srfi-111)) (define-class ()) (defin