]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/lilypond-book.py
bump version.
[lilypond.git] / scripts / lilypond-book.py
index dee3b9133ec6145507bf2be86d691864ee6dcbb4..630f6067decdd6b878aa8c7ddda34b956288f1fe 100644 (file)
@@ -235,6 +235,7 @@ LILYQUOTE = 'lilyquote'
 NOFRAGMENT = 'nofragment'
 NOINDENT = 'noindent'
 NOQUOTE = 'noquote'
+NORAGGED_RIGHT = 'noragged-right'
 NOTES = 'body'
 NOTIME = 'notime'
 OUTPUT = 'output'
@@ -562,6 +563,8 @@ ly_options = {
 
         RAGGED_RIGHT: r'''ragged-right = ##t''',
 
+        NORAGGED_RIGHT: r'''ragged-right = ##f''',
+
         PACKED: r'''packed = ##t''',
     },
 
@@ -569,12 +572,12 @@ ly_options = {
     LAYOUT: {
         NOTIME: r'''
  \context {
-  \Score
-  timing = ##f
+   \Score
+   timing = ##f
  }
  \context {
-  \Staff
-  \remove Time_signature_engraver
+   \Staff
+   \remove "Time_signature_engraver"
  }''',
     },
 
@@ -1207,6 +1210,8 @@ class LilypondSnippet (Snippet):
 
         if 'ddump-profile' in global_options.process_cmd:
             require_file (base + '.profile')
+        if 'dseparate-log-file' in global_options.process_cmd:
+            require_file (base + '.log')
 
         map (consider_file, [base + '.tex',
                              base + '.eps',
@@ -1239,8 +1244,10 @@ class LilypondSnippet (Snippet):
             require_file (systemfile + '.eps')
             consider_file (systemfile + '.pdf')
 
+            # We can't require signatures, since books and toplevel
+            # markups do not output a signature.
             if 'ddump-signature' in global_options.process_cmd:
-                require_file (systemfile + '.signature')
+                consider_file (systemfile + '.signature')
              
        
         return (result, missing)