diff options
author | Arun Isaac | 2019-10-08 20:56:01 +0530 |
---|---|---|
committer | Arun Isaac | 2019-10-08 20:56:01 +0530 |
commit | e0849c498564b4d23df503a34c22fb237551bbc8 (patch) | |
tree | 6acde2d0ee6dee92968027d6c8501edb9bf7c600 /email/quoted-printable.scm | |
parent | 5058ce6ea76bc1104a5950a50d50b06969296215 (diff) | |
download | guile-email-e0849c498564b4d23df503a34c22fb237551bbc8.tar.gz guile-email-e0849c498564b4d23df503a34c22fb237551bbc8.tar.lz guile-email-e0849c498564b4d23df503a34c22fb237551bbc8.zip |
Reindent calls to call-with-port.
* email/email.scm (body->mime-entities, email->headers+body): Reindent
calls to call-with-port.
* email/quoted-printable.scm (quoted-printable-encode,
q-encoding-encode): Reindent calls to call-with-port.
* tests/utils.scm ("read-bytes-till returns eof-object on end of
file"): Reindent call to call-with-port.
Diffstat (limited to 'email/quoted-printable.scm')
-rw-r--r-- | email/quoted-printable.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/email/quoted-printable.scm b/email/quoted-printable.scm index 84c52c1..e501af1 100644 --- a/email/quoted-printable.scm +++ b/email/quoted-printable.scm @@ -91,7 +91,7 @@ (match-lambda* (((? bytevector? bv)) (call-with-port (open-bytevector-input-port bv) - quoted-printable-encode)) + quoted-printable-encode)) (((? port? in)) (call-with-output-string (cut quoted-printable-encode in <>))) @@ -110,9 +110,8 @@ (string-map (lambda (c) (if (char=? c #\Space) #\_ c)) - (call-with-port - (open-bytevector-input-port bv) - (lambda (in) - (call-with-output-string - (cut quoted-printable-style-encode in <> - %q-encoding-literal-char-set)))))) + (call-with-port (open-bytevector-input-port bv) + (lambda (in) + (call-with-output-string + (cut quoted-printable-style-encode in <> + %q-encoding-literal-char-set)))))) |