cl-num-utils icon indicating copy to clipboard operation
cl-num-utils copied to clipboard

methods missing keys of the generic function

Open tpapp opened this issue 13 years ago • 0 comments

This issue was reported by Péter Salvi via e-mail (thanks Péter!).

Definitions like

(defgeneric test (&key my-key &allow-other-keys) (:method (&key) t))

are not allowed because the method is missing keys that the generic function has. SBCL allows this when &allow-other-keys, but other implementations may not.

Functions that have this problem include MAP1 and AS-ARRAY (need to check others).

Think about element-type and copy?, maybe remove these?

tpapp avatar Jan 05 '13 12:01 tpapp