* [bug#61297] [PATCH] services: mpd: Fix serialization procedure for list-of-string.
@ 2023-02-05 14:51 Bruno Victal
2023-02-05 17:26 ` bug#61297: " Leo Famulari
0 siblings, 1 reply; 2+ messages in thread
From: Bruno Victal @ 2023-02-05 14:51 UTC (permalink / raw)
To: 61297; +Cc: Bruno Victal, liliana.prikler
* gnu/services/audio.scm (mpd-serialize-list-of-string): Fix serialization procedure.
---
gnu/services/audio.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/services/audio.scm b/gnu/services/audio.scm
index 630110db2a..d55b804ba9 100644
--- a/gnu/services/audio.scm
+++ b/gnu/services/audio.scm
@@ -160,7 +160,7 @@ (define mpd-serialize-string mpd-serialize-field)
(define mpd-serialize-boolean mpd-serialize-field)
(define (mpd-serialize-list-of-string field-name value)
- #~(string-concatenate #$(map (cut mpd-serialize-string field-name <>) value)))
+ #~(string-append #$@(map (cut mpd-serialize-string field-name <>) value)))
(define-maybe string (prefix mpd-))
(define-maybe list-of-string (prefix mpd-))
--
2.38.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#61297: [PATCH] services: mpd: Fix serialization procedure for list-of-string.
2023-02-05 14:51 [bug#61297] [PATCH] services: mpd: Fix serialization procedure for list-of-string Bruno Victal
@ 2023-02-05 17:26 ` Leo Famulari
0 siblings, 0 replies; 2+ messages in thread
From: Leo Famulari @ 2023-02-05 17:26 UTC (permalink / raw)
To: Bruno Victal; +Cc: 61297-done, liliana.prikler
On Sun, Feb 05, 2023 at 02:51:19PM +0000, Bruno Victal wrote:
> * gnu/services/audio.scm (mpd-serialize-list-of-string): Fix serialization procedure.
Thanks! Pushed as 4b9e1e84585270a40cec485046ce15387405d256
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-02-05 17:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-05 14:51 [bug#61297] [PATCH] services: mpd: Fix serialization procedure for list-of-string Bruno Victal
2023-02-05 17:26 ` bug#61297: " Leo Famulari
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.