ccl icon indicating copy to clipboard operation
ccl copied to clipboard

Clozure Common Lisp

Results 178 ccl issues
Sort by recently updated
recently updated
newest added

Hi, I'm running Clozure CL on macOS Ventura (MacBook Air M2). Everything looks fine and behaves as it should, but when I enter dark mode the background of the listener...

ide

https://blogs.msdn.microsoft.com/commandline/2017/12/19/af_unix-comes-to-windows/ says that at some point in the near future, AF_UNIX sockets will be available on Windows. It could be useful to add support for this to CCL when this...

windows

I primarily use the IDE when working with CCL, but it surprised me to learn it was part of the main codebase. It seems like it should be separate from...

ide

On my Raspberry Pi system: ``` Clozure Common Lisp Version 1.12.2 (v1.12.2) LinuxARM32 ? (#_getpid) Segmentation fault ``` On the other hand: ``` ? (defun mypid () (#_getpid)) MYPID ?...

arm

MCL had a mechanism for automatically executing user code both before and after a garbage collection via the variables `*pre-gc-hook*, *post-gc-hook*`, and the functions `#'add-gc-hook` and `#'remove-gc-hook`. CCL no longer...

This seems to fix the issue but I'm not sure it's the best way. For example it might be better to modify the "Show Callers" dialog so that double-clicking on...

In the IDE, if you do "Show Callers" (C-M-c), it will show a dialog box of callers of whatever function name the cursor is on. If one of those callers...

darwin
IDE

Copy this code to /tmp/bug.lisp. ``` (in-package :cl-user) (ql:quickload :bordeaux-threads) (shadow 'terminate) (ql:quickload :iterate) (use-package :iterate) (defun worker-read-byte (&aux file byte) ;; sharing can be (:private :lock :external) (setf file...

arm

CCL signals SIMPLE-FILE-ERROR conditions for all file-related errors, but they do not contain any information to programmatically distinguish what the error actually is. The most basic use case is the...

On macOS using `CCL Version 1.12.1 DarwinX8664` ``` CL-USER> (typep 1d+-0 'double-float) T CL-USER> (the double-float 1d+-0) ; Evaluation aborted on #. ```