summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix/build/po.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/build/po.scm b/guix/build/po.scm
index 6ad7b9cdbc..eb9690ad1a 100644
--- a/guix/build/po.scm
+++ b/guix/build/po.scm
@@ -55,8 +55,8 @@
(define (parse-tree->assoc parse-tree)
"Converts a po PARSE-TREE to an association list."
(match parse-tree
- ('() '())
- ((entry parse-tree ...)
+ (() '())
+ ((entry . parse-tree)
(match entry
((? string? entry)
(parse-tree->assoc parse-tree))