Hi,
is there any way to prevent the defined keyword arguments from appearing in
the "rest" argument list?

For example, if I have a definition

(define* (f #:key (a 1) (b 2) (c 3) #:allow-other-keys . rest)
  rest)

I would like (f #:a 5 #:d 6) to return (#:d 6) rather than (#:a 5 #:d 6)

Reply via email to