Michał "phoe" Herda

Results 359 comments of Michał "phoe" Herda

Fixed by https://github.com/Clozure/ccl/pull/316

This is merged to master right now - is there any other problem related to this issue? If not, we could perhaps close it.

1) Why is the slot name in `DEFSTRUCT FOO` named `NIL`? 2) Why are you using `DECLAIM` in this position? Did you mean `DECLARE`? 3) What do you mean by...

> With declaration at least you'd expect a signal on incorrect type Standard-wise, [CLHS Declaration TYPE](http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/dec_type.html) disagrees: > During the execution of any reference to the declared variable within the...

Is it possible to release the binaries in a .zip version without a MSI installer?

@arbv I have just tried running Corman Common Lisp under Wine in Linux, running the MSI installer using Wine's `msiexec` implementation, and the resulting executable seems to be a 16-bit...

> That was one of the slime developers. Sorry, must have mixed them up, they look pretty similar to one another.

> `(make-array '(3 3) :initial-contents '("foo" "bar" "baz") :element-type 'character)` We're in UB zone because the initial contents are not of the provided type. I guess that the issue is...

Sorry, I misread - this call should work, you are defining a 3D array.

In addition to my analysis from above, it seems that we can use https://github.com/Clozure/ccl/blob/275105afd94706d95ac955178316074931822c42/level-0/X86/x86-float.lisp#L26-L54 for low-level float creation. This might be useful if we want to copy how SBCL does...