fix missing argument to format
please merge to release branch
This commit is contained in:
parent
5efe7001d6
commit
2b99c86321
|
@ -2576,7 +2576,7 @@
|
||||||
(fail "no public method ~a" m)))
|
(fail "no public method ~a" m)))
|
||||||
(for ([m (class/c-absents ctc)])
|
(for ([m (class/c-absents ctc)])
|
||||||
(when (hash-ref method-ht m #f)
|
(when (hash-ref method-ht m #f)
|
||||||
(fail "class already contains public method ~a")))
|
(fail "class already contains public method ~a" m)))
|
||||||
(for ([m (class/c-inherits ctc)])
|
(for ([m (class/c-inherits ctc)])
|
||||||
(unless (hash-ref method-ht m #f)
|
(unless (hash-ref method-ht m #f)
|
||||||
(fail "no public method ~a" m)))
|
(fail "no public method ~a" m)))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user