From f76a9f2508496160531fbf082cbe6d40bf6b5145 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Mon, 24 Feb 2014 07:17:41 +0900 Subject: [PATCH] Fix bug in port-base quoted-printable-encode reported by Seth. --- lib/chibi/quoted-printable.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chibi/quoted-printable.scm b/lib/chibi/quoted-printable.scm index ac7cfb05..c746c534 100644 --- a/lib/chibi/quoted-printable.scm +++ b/lib/chibi/quoted-printable.scm @@ -63,7 +63,7 @@ ;;> Variation of the above to read and write to ports. (define (quoted-printable-encode . o) - (display (apply (quoted-printable-encode-string o)))) + (display (apply quoted-printable-encode-string o))) ;;> Return a quoted-printable encoded representation of string as ;;> above, wrapped in =?ENC?Q?...?= as per RFC1522, split across