IRC channel logs
2024-06-15.log
back to list of logs
<cpli>lloda, yeah had noticed that myself later on.. i.e. i have the correct definition using make-shared-array now but using transpose to get diagonals is intriguing <RavenJoad>Is there a way to add extra arguments to the list of arguments for GOOPS' (next-method)? <janneke>RavenJoad: sure, do something like (apply next-method o `(,@initargs #:foo bar)) <RavenJoad>janneke: Thanks for the pointer! I was missing the object in (next-method) when I was calling it. The (apply ...) does not work, but (next-method o `(#:name "foo" ,@initargs)) worked like a charm! <RavenJoad>The manual is a little vague about that, just saying the arguments are implicit and the same, so I thought I could not change them. <janneke>RavenJoad: nice...but weird, apply should work too <janneke>while a perfect manual would be nice, we can prolly afford being a being a bit vague here and there, having the source and all ;)