Custom Query (1030 matches)
Results (964 - 966 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #637 | invalid | Clozure CL 1.4 doesn't run under Windows 2000 | ||
| Description |
When I try to run wx86cl.exe under Windows 2000 Professional, it fails with the following error message: "The procedure entry point |
|||
| #642 | invalid | Call to WARN messes with pretty-printer | ||
| Description |
Calling WARN messes with the pretty-printer. CL-USER> (lisp-implementation-version)
"Version 1.4-RC1-r13031 (LinuxX8632)"
CL-USER> (setq *print-pretty* t)
T
CL-USER> (format t "~@<COMPILE-FILE failed while performing ~A on ~A.~@:>"
"#<COMPILE-OP (:FORCE T) #x150A26AE>"
"#<IRONCLAD-SOURCE-FILE \"ripemd-160\" #x14D18B46>")
COMPILE-FILE failed while performing #<COMPILE-OP (:FORCE T) #x150A26AE> on
#<IRONCLAD-SOURCE-FILE "ripemd-160" #x14D18B46>.
NIL
CL-USER> (warn "~@<COMPILE-FILE failed while performing ~A on ~A.~@:>"
"#<COMPILE-OP (:FORCE T) #x150A26AE>"
"#<IRONCLAD-SOURCE-FILE \"ripemd-160\" #x14D18B46>")
; Warning: COMPILE-FILE failed while performing
; #<COMPILE-OP (:FORCE T) #x150A26AE> on
; #<IRONCLAD-SOURCE-FILE "ripemd-160" #x14D18B46>.
; While executing: SWANK::EVAL-REGION, in process repl-thread(11).
NIL
As you can see, WARN somehow messes with pretty-printing. |
|||
| #654 | invalid | TYPE-OF incorrect for bignums | ||
| Description |
CL-USER> (lisp-implementation-version) "Version 1.5-dev-r13405M-trunk (LinuxX8664)" CL-USER> (type-of (expt 2 64)) (INTEGER 1152921504606846976) CL-USER> (type-of (expt 2 100)) (INTEGER 1152921504606846976) CL-USER> (type-of (expt 2 1000)) (INTEGER 1152921504606846976) CL-USER> (type-of (expt 2 10000)) (INTEGER 1152921504606846976) |
|||
Note:
See TracQuery
for help on using queries.
