Custom Query (1030 matches)
Results (826 - 828 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1062 | wontfix | use Amazon Glacier as repo backup | ||
| Description |
Arrange to copy periodic dumps of the ccl svn repo to Amazon Glacier. |
|||
| #1064 | fixed | reduce maphash consing | ||
| Description |
with-hash-table-iterator in file macros.lisp results in what appears to be unnecessary consing. Consing is reduced by adding ,state to the list of dynamic-extent declarations, as shown below. (defmacro with-hash-table-iterator ((mname hash-table) &body body)
|
|||
| #1066 | duplicate | improve coercion to difficult complex types | ||
| Description |
Welcome to Clozure Common Lisp Version 1.8 (LinuxX8632)! ? (deftype foo () '(complex double-float)) FOO ? (coerce #c(2 4) '(complex double-float)) #C(2.0D0 4.0D0) ? (coerce #c(2 4) 'foo) > Error: value #C(2 4) is not of the expected type REAL. > While executing: COMPLEX, in process listener(1). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 1 > Basically this happens because coerce-to-complex works on the literal type specifier instead of the canonicalized ctype. I've included a small patch to remedy this. |
|||
