1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

services: configuration: simplify alist? procedure.

* gnu/services/configuration.scm (alist?): simplify procedure.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
Bruno Victal
2023-01-25 16:38:51 +00:00
committed by Maxim Cournoyer
parent a586c3996e
commit eba81e68ac

View File

@@ -440,10 +440,7 @@ the list result in @code{#t} when applying PRED? on them."
(list-of string?))
(define alist?
(match-lambda
(() #t)
((head . tail) (and (pair? head) (alist? tail)))
(_ #f)))
(list-of pair?))
(define serialize-file-like empty-serializer)