guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 8ecf0d07f51b366a2491d8cad3c9f1a4527f39d5
Author: Tomas Volf <[email protected]>
AuthorDate: Tue May 27 14:48:32 2025 +0200
home-mpv-configuration: Fix mpv/list-of-file.
* gnu/home/services/mpv.scm (serialize-mpv/list-of-file): Use : as
delimiter.
Reported-by: Sergey Trofimov <[email protected]>
Change-Id: I7e55b306104c235d165ab138397b767f1af5c124
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/home/services/mpv.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/home/services/mpv.scm b/gnu/home/services/mpv.scm
index 50d3f06c46..54c6b86680 100644
--- a/gnu/home/services/mpv.scm
+++ b/gnu/home/services/mpv.scm
@@ -227,7 +227,7 @@
(define (serialize-mpv/list-of-file field-name lst)
#~(string-append #$(symbol->string field-name)
"="
- (string-join '#$lst ",")
+ (string-join '#$lst ":")
"\n"))
(define (mpv/list-of-file? lst)
(every mpv/file? lst))