Custom Query (1030 matches)
Results (337 - 339 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #501 | fixed | listener doesn't handle input ending with a comment | ||
| Description |
Welcome to Clozure Common Lisp Version 1.3-dev-r12103M-trunk (DarwinX8664)! ? (+ 2 2) 4 ? (+ 2 2) ; test it then sits there waiting for input. If I back up and remove the comment and hit return again, it works fine. |
|||
| #881 | fixed | HASH-TABLE-COUNT is slow on lock-free hash-tables | ||
| Description |
Calls to HASH-TABLE-COUNT on lock-free hash-tables spend a lot of time in LOCK-FREE-COUNT-ENTRIES. This is at least an issue for GBBOpen (http://gbbopen.org/svn/GBBopen/trunk/ISSUES) |
|||
| #913 | fixed | &WHOLE broken in DEFINE-METHOD-COMBINATION | ||
| Description |
Using &WHOLE in the lambda list for the :ARGUMENTS section of the long form of DEFINE-METHOD-COMBINATION results in an UNBOUND-VARIABLE condition. Here's a simple test case: CL-USER> (define-method-combination test ()
((primary () :required t))
(:arguments &whole whole)
(format t "this is it: ~A" whole)
`(call-method ,(first primary) ,(rest primary)))
;Compiler warnings :
; In an anonymous lambda form: Undeclared free variable #:ARGS
TEST
CL-USER> (defgeneric foo (x)
(:method-combination test)
(:method (x) x))
#<STANDARD-GENERIC-FUNCTION FOO #x30200127BC6F>
CL-USER> (foo 3)
You can see the warning when the method combination is defined, then the call results in: Unbound variable: #:ARGS [Condition of type UNBOUND-VARIABLE] This is on CCL Version 1.8-dev-r15225M-trunk (DarwinX8664) |
|||
