]> git.donarmstrong.com Git - lilypond.git/commitdiff
Close .xml output file in singing
authorMilan Zamazal <pdm@brailcom.org>
Wed, 14 Feb 2007 08:14:15 +0000 (09:14 +0100)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 14 Feb 2007 09:58:47 +0000 (10:58 +0100)
scm/song.scm

index 313480a85a04e42715eb417c08af51f8ead1ce77..8edacdf13c24d8b03d4888d5058ff0c9a3dfcc38 100644 (file)
@@ -65,7 +65,8 @@
   (let ((port (open-output-file filename)))
     (write-header port tempo)
     (write-lyrics port music)
-    (write-footer port))
+    (write-footer port)
+    (close-port port))
   #f)