Re: Stepping back up as a co-maintainer

2019-10-16 Thread Jean Louis
* Mark H Weaver [2019-10-16 01:42]: > Hello all, > > In light of recent events, I've decided to step back up as a > co-maintainer of GNU Guile. I am welcoming it, thank you for stepping back up. Jean

Re: Stepping back up as a co-maintainer

2019-10-16 Thread sirgazil
On Wed, 16 Oct 2019 00:41:00 -0500 Mark H Weaver wrote > Hello all, > > In light of recent events, I've decided to step back up as a > co-maintainer of GNU Guile. > > Thanks, > Mark > > \o/ --- https://sirgazil.bitbucket.io/

Re: Stepping back up as a co-maintainer

2019-10-16 Thread Vladimir Zhbanov
On Wed, Oct 16, 2019 at 01:41:00AM -0400, Mark H Weaver wrote: > Hello all, > > In light of recent events, I've decided to step back up as a > co-maintainer of GNU Guile. > > Thanks, >Mark > Glad to hear it, thank you :-) -- Vladimir (λ)επτόν EDA — https://github.com/lepton-eda

Re: Weird Guile Scheme Behaviour

2019-10-16 Thread Philip K.
Mark H Weaver writes: > The problem here is that '(start) is a *literal* list, and it's an error > to modify literals in Scheme. In other words, modifying a literal > results in undefined behavior. Like C string literals, Scheme literals > are actually part of the program text itself. Ah, that