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
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
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
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