aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--email/email.scm4
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)