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/email.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/email.scm')
-rw-r--r-- | email/email.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/email/email.scm b/email/email.scm index 7cef7e7..8cb9757 100644 --- a/email/email.scm +++ b/email/email.scm @@ -588,17 +588,15 @@ BOUNDARY (as explained in RFC2045), and return that list." (eof-object) (read-till-boundary port)))) - (call-with-port - (open-bytevector-input-port body) - (lambda (port) - (read-till-boundary port) - (read-objects read-mime-entity port)))) + (call-with-port (open-bytevector-input-port body) + (lambda (port) + (read-till-boundary port) + (read-objects read-mime-entity port)))) (define (email->headers+body email) "Split EMAIL bytevector into headers and body. Return as multiple values. The returned headers is a string and body is a bytevector." - (call-with-port - (open-bytevector-input-port email) + (call-with-port (open-bytevector-input-port email) (lambda (port) ;; Email headers must strictly be ASCII characters. But for the ;; sake of supporting Emacs message mode parens style addresses |