cs: fix error message from raise-argument-error
Closes https://github.com/racket/racket/issues/2400
This commit is contained in:
parent
7823b6eecf
commit
2798608ccd
|
@ -148,7 +148,9 @@
|
|||
(if (and pos (pair? args))
|
||||
(apply
|
||||
string-append
|
||||
"\n other arguments:"
|
||||
"\n argument position: "
|
||||
(nth-str (add1 pos))
|
||||
"\n other arguments...:"
|
||||
(let loop ([pos pos] [args (cons arg args)])
|
||||
(cond
|
||||
[(null? args) '()]
|
||||
|
|
Loading…
Reference in New Issue
Block a user