Custom Query (1030 matches)
Results (298 - 300 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #359 | fixed | consistent crashes on openmcl 1.2-r11193M (DarwinX8664) with apachebench/hunchentoot-0.15.7 | ||
| Description |
Fresh instance of hunchentoot serving default page. ab -n 3000 -c 5 http://127.0.0.1:8080 ? Unhandled exception 10 at 0x23450, context->regs at #xb0e9ddc0 Exception occurred while executing foreign code ? for help [5817] OpenMCL kernel debugger: |
|||
| #1018 | fixed | congruent lambda-lists | ||
| Description |
CCL currently doesn’t accept the following form: (defgeneric foo (&key bar &allow-other-keys)
(:method (&key)
nil))
complaining that `Lambda list of method #<STANDARD-METHOD FOO NIL> is incompatible with that of the generic function FOO.` However, section 7.6.4.5 of the spec says “The use of &allow-other-keys need not be consistent across lambda lists. If &allow-other-keys is mentioned in the lambda list of any applicable method or of the generic function, any keyword arguments may be mentioned in the call to the generic function,” which means that the former example should behave the same as (defgeneric foo (&key bar &allow-other-keys)
(:method (&key &allow-other-keys)
nil))
which works.
(The |
|||
| #150 | fixed | confused by close paren at end of file | ||
| Description |
Reported by Ron Garret in openmcl-devel: Double-clicking on a close-paren doesn't do the right thing when the close paren is the last character in the file. |
|||
