Skip to content

Commit

Permalink
Fixes keyword method handling in interface macro
Browse files Browse the repository at this point in the history
  • Loading branch information
chiefnoah committed Oct 28, 2023
1 parent 33109cd commit b39b507
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/std/interface.ss
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@
((kw (id default) . rest)
(stx-keyword? #'kw)
(lp #'rest (cons* #'(id absent-obj) #'kw args)))
((kw (id . contract) .rest)
((kw (id . contract) . rest)
(stx-keyword? #'kw)
(cond
((get-contract-default #'contract)
Expand Down Expand Up @@ -439,7 +439,7 @@
((kw (id default) . rest)
(stx-keyword? #'kw)
(lp #'rest (cons* #'(id default) #'kw args)))
((kw (id . contract) .rest)
((kw (id . contract) . rest)
(stx-keyword? #'kw)
(cond
((get-contract-default #'contract)
Expand Down

0 comments on commit b39b507

Please sign in to comment.