]> git.donarmstrong.com Git - lilypond.git/commitdiff
* scripts/lilypond-book.py: Bug fix, put the quote around the
authorMats Bengtsson <mats.bengtsson@s3.kth.se>
Tue, 4 Oct 2005 12:33:28 +0000 (12:33 +0000)
committerMats Bengtsson <mats.bengtsson@s3.kth.se>
Tue, 4 Oct 2005 12:33:28 +0000 (12:33 +0000)
actual score for LaTeX documents.

ChangeLog
scripts/lilypond-book.py

index 96d0425b9aed05ef21a2a3f2763a5d5125499b59..dd8aca8edbc9e2da98f1612f3e7f0bd114ad1ce6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-10-04  Mats Bengtsson  <mabe@drongo.s3.kth.se>
 
+       * 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
index eb4f4617cab6cf19bd34db26e533bdd7b39ca9a7..1e14b596e02561d9e805bae396078ed29f4fa5b7 100644 (file)
@@ -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):