Karsten Poeck
Karsten Poeck
Here are the files (in inverse order as I donwloaded them) [HistoryOfOpenMcl.txt](https://github.com/Clozure/ccl/files/4809085/HistoryOfOpenMcl.txt) [ToDo.txt](https://github.com/Clozure/ccl/files/4809086/ToDo.txt) [CustomFramework.txt](https://github.com/Clozure/ccl/files/4809087/CustomFramework.txt) [BuildFFIGEN.txt](https://github.com/Clozure/ccl/files/4809088/BuildFFIGEN.txt) [ForeignFunctionInterface.txt](https://github.com/Clozure/ccl/files/4809089/ForeignFunctionInterface.txt) [MemoryUtils.txt](https://github.com/Clozure/ccl/files/4809090/MemoryUtils.txt) [VectorStreams.txt](https://github.com/Clozure/ccl/files/4809091/VectorStreams.txt) [CclUnderGdb.txt](https://github.com/Clozure/ccl/files/4809092/CclUnderGdb.txt) [CocoaIde_FontSupportImplementation.txt](https://github.com/Clozure/ccl/files/4809093/CocoaIde_FontSupportImplementation.txt) [CocoaIde_FontSupport.txt](https://github.com/Clozure/ccl/files/4809094/CocoaIde_FontSupport.txt) [CocoaIde_KeyBindingsComparison.txt](https://github.com/Clozure/ccl/files/4809095/CocoaIde_KeyBindingsComparison.txt) [CocoaIde_Editor.txt](https://github.com/Clozure/ccl/files/4809096/CocoaIde_Editor.txt) [CocoaIde_DesignNotes.txt](https://github.com/Clozure/ccl/files/4809097/CocoaIde_DesignNotes.txt) [HemlockProgrammer_Miscellaneous.txt](https://github.com/Clozure/ccl/files/4809098/HemlockProgrammer_Miscellaneous.txt) [HemlockProgrammer_Utilities.txt](https://github.com/Clozure/ccl/files/4809099/HemlockProgrammer_Utilities.txt) [HemlockProgrammer_HighLevelTextPrimitives.txt](https://github.com/Clozure/ccl/files/4809100/HemlockProgrammer_HighLevelTextPrimitives.txt) [HemlockProgrammer_HemlockLispEnvironment.txt](https://github.com/Clozure/ccl/files/4809101/HemlockProgrammer_HemlockLispEnvironment.txt) [HemlockProgrammer_Files.txt](https://github.com/Clozure/ccl/files/4809102/HemlockProgrammer_Files.txt) [HemlockProgrammer_TheEchoArea.txt](https://github.com/Clozure/ccl/files/4809103/HemlockProgrammer_TheEchoArea.txt)...
I have clozure working fine in aquamacs 3.5 with "Version 1.12 (v1.12-dev.3-125-g595a5cf4) DarwinX8664" and mojave 10.14.6, so pretty sure this is a catalina/ccl issue independent from slime. There are several...
Please check https://github.com/Clozure/ccl/issues/285
Hello, I believe the code that you changed simply modifies the declaration for the step-by variable `#:LOOP-STEP-BY-6`and this is what you achieved (now getting the compiler warning). loop-constant-fold-if-possible simply warns...
I believe a good explanation is the following: ```lisp (defun test () (let ((var 0)) (declare (type (and number (real (0))) var)) (+ 23 var))) ```` in ccl this compiles...
In summary i believe your fix is correct, It just doesn't create the type-error you expected
@phoe I knew all that. I tried to make a connection to the loop problem with the `by 0`. if you verify carefully the macroexpansion, you see the ```` (LET...
I think you missed the beginning: * `(loop for i below 10 for j by 0 collect (list i j))` works fine in ccl, but is against the spec (the...
If a macroexpansion-time error is kosher, perhaps we it is easier to change `loop-constant-fold-if-possible form` to raise an error instead of warning as it does now (and do the change...
@PuercoPop @digikar99 @phoe #307 solves this, please check