diff options
author | Arun Isaac | 2018-09-12 17:52:08 +0530 |
---|---|---|
committer | Arun Isaac | 2018-09-12 17:55:19 +0530 |
commit | 2784c121d5a3c9d8e7831c883edac3b6857bc198 (patch) | |
tree | ca03f80a787a3502524257277321c2b647e78632 /tests | |
parent | 959941b87c2e7ba732cae8ad1943432dfba83427 (diff) | |
download | guile-email-2784c121d5a3c9d8e7831c883edac3b6857bc198.tar.gz guile-email-2784c121d5a3c9d8e7831c883edac3b6857bc198.tar.lz guile-email-2784c121d5a3c9d8e7831c883edac3b6857bc198.zip |
Untabify and re-indent all sources.
* build-aux/test-driver.scm, email/base64.scm, email/email.scm,
email/quoted-printable.scm, email/utils.scm,
tests/quoted-printable.scm: Untabify and re-indent.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/quoted-printable.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/quoted-printable.scm b/tests/quoted-printable.scm index cc1b957..a0f0369 100755 --- a/tests/quoted-printable.scm +++ b/tests/quoted-printable.scm @@ -18,9 +18,9 @@ ;;; <http://www.gnu.org/licenses/>. (use-modules (email quoted-printable) - (ice-9 iconv) - (srfi srfi-1) - (srfi srfi-64)) + (ice-9 iconv) + (srfi srfi-1) + (srfi srfi-64)) (test-begin "quoted-printable") @@ -44,10 +44,10 @@ abriquent pour te la vendre une =C3=A2me vulgaire.") (test-assert "quoted-printable wikipedia example: encoded output should not be more than 76 columns wide" (every (lambda (line) - (<= (string-length line) 76)) - (string-split (quoted-printable-encode - (string->bytevector decoded-text charset)) - #\newline)))) + (<= (string-length line) 76)) + (string-split (quoted-printable-encode + (string->bytevector decoded-text charset)) + #\newline)))) (test-equal "q-encoding wikipedia example" (bytevector->string |