[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#37427: [PATCH] services: dovecot: Fix predicate names for free-form
From: |
Ludovic Courtès |
Subject: |
bug#37427: [PATCH] services: dovecot: Fix predicate names for free-form fields |
Date: |
Fri, 20 Sep 2019 22:35:53 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Hi Alexey,
Alexey Abramov <address@hidden> skribis:
> --- a/gnu/services/mail.scm
> +++ b/gnu/services/mail.scm
> @@ -137,7 +137,7 @@
> (define (free-form-fields? val)
> (match val
> (() #t)
> - ((((? symbol?) . (? string)) . val) (free-form-fields? val))
> + ((((? symbol?) . (? string?)) . val) (free-form-fields? val))
Good catch! I tweaked the commit log and committed.
Thanks,
Ludo’.