Michał "phoe" Herda
Michał "phoe" Herda
> Again i would do that by myself, but don't know how to do that without having edit rights on ccl. I think it requires repo collaborator's rights to be...
Will this function work with multiple threads without race conditions? We are accessing CWD, which is a process-global singular resource, so multiple threads which launch programs simultaneously may collide with...
OK - if we have already forked, then we are mutating the new process's CWD, and so the old process's CWD is untouched. Thanks for clarification.
1.11.5 is too old to work on Catalina. Have you tried a more recent release? https://github.com/Clozure/ccl/releases
> You need a 32-bit operating system to run the 32-bit implementation (which I no longer have), but it appears that you already have that since you wouldn't have been...
We will need a test suite to support our implementation against. Opened https://github.com/Shinmera/trivial-extensible-sequences/issues/1 for that reason.
AFAIK none so far.
Nope, I just haven't found any time+will to work on this yet.
This seems related to the package local nickname system, which I introduced into CCL. I'll take this bug.
The issue seems related to the functions `DEFAULT-FORM-HANDLER` and `E-LIST` from the system `fn`. https://github.com/cbaggers/fn/blob/8d8587d03a7b5e26b306fc90018e385d9e5acc2c/mad.lisp#L297-L300 https://github.com/cbaggers/fn/blob/8d8587d03a7b5e26b306fc90018e385d9e5acc2c/mad.lisp#L314-L333 ```lisp (defun default-form-handler (first &rest rest) `(list ,(if (symbolp first) `',first (e first)) ,@(e-list...