From ac9438b57ede4b975aea9c576f8ce1edf6f0f05f Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Wed, 5 Dec 2018 17:42:00 -0800 Subject: [PATCH] fixup --- pitfall/pitfall/text.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pitfall/pitfall/text.rkt b/pitfall/pitfall/text.rkt index a77d0221..cb8277c6 100644 --- a/pitfall/pitfall/text.rkt +++ b/pitfall/pitfall/text.rkt @@ -82,7 +82,7 @@ https://github.com/mbutterick/pdfkit/blob/master/lib/mixins/text.coffee (define (text this text-string [x #f] [y #f] [options (mhash)]) - (send this _text text-string x y options (λ (x) (_line this x)))) + (send this _text text-string x y options (λ args (apply _line this args)))) (define/contract (widthOfString this str [options (mhash)])