aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/util/describe.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/vcomponent/util/describe.scm')
-rw-r--r--module/vcomponent/util/describe.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/vcomponent/util/describe.scm b/module/vcomponent/util/describe.scm
index 0c3ab27c..703ac73a 100644
--- a/module/vcomponent/util/describe.scm
+++ b/module/vcomponent/util/describe.scm
@@ -1,5 +1,6 @@
(define-module (vcomponent util describe)
:use-module (hnh util)
+ :use-module (srfi srfi-71)
:use-module (vcomponent base)
:use-module (text util))
@@ -14,7 +15,7 @@
(format #t "~aBEGIN ~a~%" ii (type vcomponent))
(for-each (lambda (kv)
- (let* (((key . values) kv))
+ (let ((key values (car+cdr kv)))
(define (out vline)
(format #t "~a~a = ~a"
iii