summary refs log tree commit diff
path: root/email
diff options
context:
space:
mode:
authorArun Isaac2019-12-16 02:00:14 +0530
committerArun Isaac2019-12-16 02:00:14 +0530
commitd39a89d54fa7a41c34cdf6c3cf8107cc9545d720 (patch)
tree61963c7a9c7d642fbe77b1f45cf818958d96f9a7 /email
parentaec41c3b5268f02109b7ad8d3237819df1f409ce (diff)
downloadguile-email-d39a89d54fa7a41c34cdf6c3cf8107cc9545d720.tar.gz
guile-email-d39a89d54fa7a41c34cdf6c3cf8107cc9545d720.tar.lz
guile-email-d39a89d54fa7a41c34cdf6c3cf8107cc9545d720.zip
base64: Import only the required rnrs modules.
* email/base64.scm: Import (rnrs arithmetic bitwise), (rnrs arithmetic
fixnums), (rnrs base), (rnrs bytevectors) and (rnrn io ports), not all
of (rnrs).
Diffstat (limited to 'email')
-rw-r--r--email/base64.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/email/base64.scm b/email/base64.scm
index 94b7388..e638b55 100644
--- a/email/base64.scm
+++ b/email/base64.scm
@@ -55,7 +55,11 @@
             base64url-alphabet
             get-delimited-base64
             put-delimited-base64)
-  #:use-module (rnrs)
+  #:use-module (rnrs arithmetic bitwise)
+  #:use-module (rnrs arithmetic fixnums)
+  #:use-module (rnrs base)
+  #:use-module (rnrs bytevectors)
+  #:use-module (rnrs io ports)
   #:use-module ((srfi srfi-13)
                 #:select (string-index
                           string-prefix? string-suffix?