Custom Query (1030 matches)
Results (520 - 522 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #656 | invalid | dolist's result-form was not accepted by ccl | ||
| Description |
I'm using "Version 1.4-r13122 (WindowsX8632)", on a windows xp professional box (with Service pack 3) while working on a project I found that ccl does not understand the result-form of the dolist macro. double checking with CLHS to insure i didn't make fool of myself. http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/mac_dolist.html and then taking one of the examples from the above page: (dolist (temp-one '(1 2 3 4) temp-two) (push temp-one temp-two)) gave me the following in ccl: Welcome to Clozure Common Lisp Version 1.4-r13122 (WindowsX8632)! ? (dolist (temp-one '(1 2 3 4) temp-two) (push temp-one temp-two)) ;Compiler warnings : ; In an anonymous lambda form: Undeclared free variable TEMP-TWO (3 references ) > Error: Unbound variable: TEMP-TWO > While executing: #<Anonymous Function #x8CB4D7E>, in process listener(1). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 1 > rather than giving me => (4 3 2 1) |
|||
| #655 | fixed | ccl64 appears to have a bug in the cygwin case. | ||
| Description |
This change <http://trac.clozure.com/ccl/changeset/10240> and the current script appears to have a bug. The clause for cygwin should set DD since CCL_DEFAULT_DIRECTORY is slammed <http://trac.clozure.com/ccl/browser/branches/win64/scripts/ccl64?rev=10240#L73> by DD moments later. |
|||
| #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) |
|||
