diff options
author | Arun Isaac | 2020-12-05 20:14:04 +0530 |
---|---|---|
committer | Arun Isaac | 2020-12-05 20:14:04 +0530 |
commit | 77dba0ddf59069b0980b2413f6f46f0f012edcab (patch) | |
tree | 021b09c65a4963a1ea65eb0884c591bedd03a77c /email | |
parent | 7f53ca692724bddf5d12600b30b0f25634ce180d (diff) | |
download | guile-email-77dba0ddf59069b0980b2413f6f46f0f012edcab.tar.gz guile-email-77dba0ddf59069b0980b2413f6f46f0f012edcab.tar.lz guile-email-77dba0ddf59069b0980b2413f6f46f0f012edcab.zip |
email: Indent better.
* email/email.scm (define-cfws-pattern): Indent better.
Diffstat (limited to 'email')
-rw-r--r-- | email/email.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/email/email.scm b/email/email.scm index 5df541c..631d519 100644 --- a/email/email.scm +++ b/email/email.scm @@ -159,7 +159,9 @@ (define-syntax-rule (define-cfws-pattern name comment) (define-peg-pattern name body - (or (and (+ (and (? fws) comment)) (? fws)) fws))) + (or (and (+ (and (? fws) comment)) + (? fws)) + fws))) (define-cfws-pattern cfws comment) |