From: Han-Wen Nienhuys Date: Sun, 4 Jul 2004 13:07:39 +0000 (+0000) Subject: (Lilypond_snippet.output_texinfo): add X-Git-Tag: release/2.2.4~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0bdef0047c8566067766e8e2a545df2f3163004c;p=lilypond.git (Lilypond_snippet.output_texinfo): add \n to texidoc. --- diff --git a/ChangeLog b/ChangeLog index 7b71e46993..ac32d83b30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2004-07-04 Han-Wen Nienhuys + * 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. diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index 610f81815c..dc44f771d8 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -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'))