From b19c2377dc9e3971a537e8dc13c48917f4f86b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Wed, 24 Apr 2019 01:00:51 +0200 Subject: Remove concat. Apparently SRFI-1 comes with concatenate... --- module/vcomponent/output.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'module/vcomponent/output.scm') diff --git a/module/vcomponent/output.scm b/module/vcomponent/output.scm index d5cf0f32..8db2d85b 100644 --- a/module/vcomponent/output.scm +++ b/module/vcomponent/output.scm @@ -2,6 +2,7 @@ #:use-module (vcomponent) #:use-module (vcomponent control) #:use-module (util) + #:use-module (srfi srfi-1) #:use-module (srfi srfi-19 util) #:use-module (srfi srfi-26) #:use-module (ice-9 format) @@ -32,7 +33,7 @@ (format port "~a ~15@a~{;~a=~{~a~^,~}~}: ~a~%" (make-string depth #\:) key - (concat (hash-map->list list (cdr at))) + (concatenate (hash-map->list list (cdr at))) (v at))))) (for-each-in (children comp) (lambda (e) (print-vcomponent e port #:depth (1+ depth)))))) -- cgit v1.2.3