ccl
ccl copied to clipboard
Clozure Common Lisp
On errornous situation, `make-tcp-socket` function seems to make a temporal tcp-stream object referring a closed FD. I saw some strange crashes probably because of it. This PR tries to release...
On SBCL, the following works: ```lisp CL-USER> (let ((lambda-list '(a)) (body 'a)) (compile nil `(sb-int:named-lambda (my-fun-name) ,lambda-list ,body))) # NIL NIL ``` Is there an equivalent way to do things...
According to the language spec a toplevel `symbol-macrolet` form should evaluate its body as toplevel forms and the `defstruct` form with a `:include` option can have an argument which is...
Here is test-case.lisp (this same code works without warnings in the REPL): ``` (in-package #:cl-user) (progn (defclass location-mixin () ((%location :initarg :location :initform nil))) (defgeneric location (system &key) (:method :around...
Trying to call: ``` (DEFGENERIC AT-RESTART NIL (:DOCUMENTATION "Methods called when the image is restarted.") (:METHOD-CLASS t) (:METHOD foo NIL T)) ``` at the repl gives: While compiling (AT-RESTART (T...
[CLHS Variable \*FEATURES\*](http://www.lispworks.com/documentation/HyperSpec/Body/v_featur.htm) states: > `:ieee-floating-point ` > If present, indicates that the implementation purports to conform to the requirements of IEEE Standard for Binary Floating-Point Arithmetic. CCL seems to...
Given the announcement at WWDC 2020 that macOS is transitioning to ARM, it seems that ARM64 support is going to become much more important pretty soon. I see that there...
**CCL Version 1.11.6 DarwinX8664 (installed via homebrew)** **macOS Mojave Version 10.14.6** Given the following in a file `foo.lisp`: ``` common-lisp (deftype array-index () '(integer 0 #.(1- array-total-size-limit))) (defstruct foo (vec...
I try to load swank + alexandria + babel + bordeaux-threads (quicklisp dist 2017-04-03), and I get SIGSEGV. Removing any of the libs from the list makes the problem disappear....
**To trigger:** (ql:quickload :varjo) **Works:** Clozure Common Lisp Version 1.11.6 DarwinX8664 Clozure Common Lisp Version 1.12-dev (v1.12-dev.3-24-g1fd2a4b4) DarwinX8664 SBCL, ECL, ABCL **Fails:** Clozure Common Lisp Version 1.12-dev (v1.12-dev.5-17-g58d4d91c) DarwinX8664 Not...