Custom Query (1030 matches)
Results (610 - 612 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #539 | invalid | Constant defined by defconstant isn't contant | ||
| Description |
I put the following code in a file: (eval-when (:compile-toplevel :load-toplevel :execute) (defconstant c1 (gensym)) (defun foo () c1) ) I then compile the file, quit CCL, start it up again, and load the compiled version of the file. When I do that, the value returned by calling (foo) is not the same as the value of C1: Welcome to Clozure Common Lisp Version 1.4-dev-r12255M-trunk (DarwinX8664)! ? (load #P"/Users/ron/Desktop/test.dx64fsl") ;Loading #P"/Users/ron/Desktop/test.dx64fsl"... C1 FOO #P"/Users/ron/Desktop/test.dx64fsl" ? c1 #:G13 ? (foo) #:G19 ? This appears to be a bug in compile-file. When I trace the gensym, it's called twice when the file is compiled, but only once if the file is loaded as source. |
|||
| #535 | invalid | ns:ns-tracking-area not available in 32-bit CCL | ||
| Description |
Subject line says it all. It works in 32-bit objc and 64-bit CCL so I'm guessing it's a bug in the interfaces. |
|||
| #534 | fixed | "shift" in hemlock bindings dont work | ||
| Description |
in hemlock binding you have for example: (bind-key "Select Backward Character" #k"shift-leftarrow") (bind-key "Select Forward Character" #k"shift-rightarrow") (bind-key "Select Next Line" #k"shift-downarrow") etc. neither of these does select anything. in my own tries I dont have "shift" to work in any combination. the "shift" in other bindings is resolved not by "shift" but by a upcase letter (bind-key "Select Forward Character" #k"control-F") |
|||
