From: hanwen Date: Tue, 1 Oct 2002 09:53:11 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/1.7.25~747 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=21c33eae26760a3eb1ba356be118d45ce7d5c9e9;p=lilypond.git *** empty log message *** --- diff --git a/scm/to-xml.scm b/scm/to-xml.scm index dbd12f34ed..25298fa0b7 100644 --- a/scm/to-xml.scm +++ b/scm/to-xml.scm @@ -181,8 +181,9 @@ is then separated. (if (pitch? p) (dump-pitch p port)) (if (pair? es) - (begin - (map (lambda (x) (music-to-xml-helper x port)) es))) + (map (lambda (x) (music-to-xml x port)) es) + ) + (if (music? e) (begin (music-to-xml-helper e port)))