From e317ff172125448c5dc269e16bbcd0af8a051c86 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Fri, 25 Jul 2014 10:57:27 -0700 Subject: [PATCH] update 'trim' to 'trimf' --- decode.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decode.rkt b/decode.rkt index e61a9ed..03bd574 100644 --- a/decode.rkt +++ b/decode.rkt @@ -301,7 +301,7 @@ ;; prepare elements for paragraph testing (define (prep-paragraph-flow xc) - (linebreak-proc (merge-newlines (trim xc whitespace?)))) + (linebreak-proc (merge-newlines (trimf xc whitespace?)))) (define my-paragraph-break? (λ(x) (and (paragraph-break? x #:separator sep) #t)))