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

Revert "services/configuration: Fix case where sub-documentation is nonexistent."

This reverts commit 8b6e9acc26.

Fixes: <https://issues.guix.gnu.org/79578>
This commit is contained in:
Maxim Cournoyer
2025-12-30 20:44:38 +09:00
parent 045ee8ec77
commit ea4dd4c45d

View File

@@ -463,12 +463,11 @@ DEFAULT."
,@(append-map
generate
(filter-map
(match-lambda
((name config)
(and (eq? name field-name)
config)))
(or (assq-ref sub-documentation field-name)
'()))))))
(match-lambda
((name config)
(and (eq? name field-name)
config)))
sub-documentation)))))
fields)))))))
(stexi->texi `(*fragment* . ,(generate documentation-name))))