From: matsb Date: Tue, 4 Oct 2005 12:33:28 +0000 (+0000) Subject: * scripts/lilypond-book.py: Bug fix, put the quote around the X-Git-Tag: release/2.7.16^2~120 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bddcc2bc3ee7478c7683cab21bb2cd911e22fee2;p=lilypond.git * scripts/lilypond-book.py: Bug fix, put the quote around the actual score for LaTeX documents. --- diff --git a/ChangeLog b/ChangeLog index 96d0425b9a..dd8aca8edb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-10-04 Mats Bengtsson + * scripts/lilypond-book.py: Bug fix, put the quote around the + actual score for LaTeX documents. + * scm/define-grobs.scm (all-grob-descriptions): Change collapse-height of the SystemStartBracket grob to 5.0, so the bracket disappears for single stave score lines (similarly diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index eb4f4617ca..1e14b596e0 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -1051,10 +1051,10 @@ class Lilypond_snippet (Snippet): if VERBATIM in self.option_dict: verb = self.substring ('code') str += (output[LATEX][VERBATIM] % vars ()) - if QUOTE in self.option_dict: - str = output[LATEX][QUOTE] % vars () str += (output[LATEX][OUTPUT] % vars ()) + if QUOTE in self.option_dict: + str = output[LATEX][QUOTE] % vars () return str def output_print_filename (self, format):