ccl
ccl copied to clipboard
Clozure Common Lisp
Workaround for now: `$ defaults write -app "Clozure CL" NSRequiresAquaSystemAppearance -bool true` revert this decision: `$ defaults delete -app "Clozure CL" NSRequiresAquaSystemAppearance`
Could we get some automatic output-buffer flushing? When using CCL as a backend at some other systems (e.g. Maxima) I encounter situations where the outputs get quite delayed, like until...
A test case is as follows: ``` (defvar *example* #p"/home/cons/projects/collards/examples/.collards") (pathname-name *example*) ;; returns NIL (pathname-type *example*) ;; returns "collards" ``` This causes an incorrect result from `uiop:hidden-pathname-p`. (see: https://gitlab.common-lisp.net/asdf/asdf/-/blob/master/uiop/pathname.lisp#L257)...
Under some rare and unknown circumstances, calling `(static-cons ...)` from ACL2 running on top of CCL resulted in the following error: > Error: Current process # does not own lock...
To be a good UNIX citizen, a built binary distribution of CCL should be structured for extraction into either `/opt` or `/usr/local` by default. For example, the contents of the...
It’s inconvenient to have to merge a binary distribution into a cloned repository in order to build it. It should be possible to build CCL without having binaries in the...
On Solaris (well, OmniOS), the interface translator seems to be picking up the following prototype for getpwuid_r from /usr/include/pwd.h: ``` extern struct passwd *getpwuid_r(uid_t, struct passwd *, char *, int);...