]> git.donarmstrong.com Git - lilypond.git/commitdiff
Eliminate Guile deprecation warning in scm/song.scm
authorDavid Kastrup <dak@gnu.org>
Wed, 7 Dec 2011 13:13:14 +0000 (14:13 +0100)
committerDavid Kastrup <dak@gnu.org>
Wed, 7 Dec 2011 13:13:53 +0000 (14:13 +0100)
scm/song.scm

index 9655e321e49afe05c00a48361d2d8f8fc3bbc608..ffa53816c22293af75ab27f862bd4c137313fc5b 100644 (file)
@@ -90,9 +90,9 @@
                  ((= octave 0)
                   "")
                  ((> octave 0)
-                  (make-uniform-array #\' octave))
+                  (make-string octave #\'))
                  ((< octave 0)
-                  (make-uniform-array #\, (- 0 octave)))))
+                  (make-string (- octave) #\,))))
               (pp-duration (note-duration object))
               (if (> (note-joined object) 0) "-" ""))))
    ((rest? object)