]> git.donarmstrong.com Git - lilypond.git/commitdiff
(Lilypond_snippet.output_texinfo): add
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 4 Jul 2004 13:07:39 +0000 (13:07 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 4 Jul 2004 13:07:39 +0000 (13:07 +0000)
\n to texidoc.

ChangeLog
scripts/lilypond-book.py

index 7b71e46993e498456f8dc8e521879a1ddacb9313..ac32d83b302c165638d598ffefc71813cb570cf9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2004-07-04  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * scripts/lilypond-book.py (Lilypond_snippet.output_texinfo): add
+       \n to texidoc.
+
        * input/test/volta-chord-names.ly: new file.
 
        * lily/volta-bracket.cc (print): handle no bars situation. 
index 610f81815cf7d6969f3a5fc5549669695964e9f0..dc44f771d8e44e8df3659cc40d558912aaf5bf99 100644 (file)
@@ -652,7 +652,7 @@ class Lilypond_snippet (Snippet):
                if TEXIDOC in self.options:
                        texidoc = base + '.texidoc'
                        if os.path.exists (texidoc):
-                               str += '@include %(texidoc)s\n' % vars ()
+                               str += '@include %(texidoc)s\n\n' % vars ()
 
                if VERBATIM in self.options:
                        verb = verbatim_texinfo (self.substring ('code'))