Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (730 - 732 of 1030)

Ticket Resolution Summary Owner Reporter
#461 fixed composed character as listener input doesn't seem to be processed Gary Byers R. Matthew Emerson
Description

Open a listener. Type in a composed character, for example, é (via C-q option-e e), and hit return. I'd expect an unbound variable error, but for some reason, the character doesn't seem to be read. The return just moves the cursor down to the next line.

#150 fixed confused by close paren at end of file Gary Byers gz
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.

#1018 fixed congruent lambda-lists Greg Pfeil
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 cl-num-utils system in Quicklisp fails to load on CCL due to this behavior. And according to the CL Test Grid load failure report, this contributes to 5 other systems in Quicklisp not loading.)

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.