mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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 <sarg@sarg.org.ru> Change-Id: I7e55b306104c235d165ab138397b767f1af5c124 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
cd1c1d25b6
commit
8ecf0d07f5
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@
|
||||||
(define (serialize-mpv/list-of-file field-name lst)
|
(define (serialize-mpv/list-of-file field-name lst)
|
||||||
#~(string-append #$(symbol->string field-name)
|
#~(string-append #$(symbol->string field-name)
|
||||||
"="
|
"="
|
||||||
(string-join '#$lst ",")
|
(string-join '#$lst ":")
|
||||||
"\n"))
|
"\n"))
|
||||||
(define (mpv/list-of-file? lst)
|
(define (mpv/list-of-file? lst)
|
||||||
(every mpv/file? lst))
|
(every mpv/file? lst))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue