]> git.donarmstrong.com Git - lilypond.git/commitdiff
Continue unsetting 'warning-as-error for regtests
authorPatrick McCarty <pnorcks@gmail.com>
Thu, 17 Sep 2009 08:22:17 +0000 (01:22 -0700)
committerPatrick McCarty <pnorcks@gmail.com>
Fri, 18 Sep 2009 01:55:15 +0000 (18:55 -0700)
input/regression/beam-quarter.ly
input/regression/clef-warn.ly
input/regression/grace-end-2.ly
input/regression/grace-end.ly
input/regression/harp-pedals-sanity-checks.ly
input/regression/harp-pedals.ly
input/regression/markup-music-glyph.ly

index ac1d57819d9daedacf59e06f2f01332fd7a3f1ec..512125eee56cbe76de92e2dff86304854a5386b3 100644 (file)
@@ -1,12 +1,11 @@
-
 \version "2.12.0"
-\header
-{
+
+#(ly:set-option 'warning-as-error #f)
+
+\header {
   texidoc= "Quarter notes may be beamed: the beam is halted momentarily."
 }
 
-\layout { ragged-right = ##t }
-
 \relative c'' {
   c8[ c4 c8] % should warn here!
 }
index 5f3b410e9d131896f8dab68d12cdcffa4f424539..30f7bc618c7a7b26e826c7ecaad86b28f1f066d2 100644 (file)
@@ -1,10 +1,12 @@
+\version "2.12.0"
+
+#(ly:set-option 'warning-as-error #f)
+
 \header {
   texidoc = "Unknown clef name warning displays available clefs"
-  }
+}
 
-
-\version "2.12.0"
 {
   \clef "foo"
   c4
-  }
+}
index 88ba6088240835d9bb7fd0c3c5ded9f461cd8d6b..2324e22818ca99bcc221b03b7b26049171916ad4 100644 (file)
@@ -1,8 +1,9 @@
+\version "2.12.0"
+
+#(ly:set-option 'warning-as-error #f)
 
 \header {
   texidoc = "Grace notes at the end of an expression don't cause crashes."
-  }
-
-\version "2.12.0"
+}
 
-{ e' \acciaccatura <<  e'8  \\  cis'  >>  }
+{ e' \acciaccatura << e'8 \\ cis' >> }
index 1155d98921467abf9ee9a6ab13cf3c3b858d2ac8..b3e5317b3eceecbace9d9969762be0bd4d7ba0c9 100644 (file)
@@ -1,24 +1,12 @@
-
 \version "2.12.0"
-\header {
 
+#(ly:set-option 'warning-as-error #f)
+
+\header {
   texidoc="@cindex Grace End
  Grace notes after the last note do not confuse the timing code."
-
-
 }
 
-\layout {
-  ragged-right = ##t
-}
-
-
-
 \context Voice \relative c' {
-  
-  c4 \grace {  d16[ d16] }
-  
+  c4 \grace { d16[ d16] }
 }
-  
-
-
index 38c4f450898801fe7c3be12f644cd1e2ab360a02..c918ddbe6fa91c369bd14838c84b7093bab2888b 100644 (file)
@@ -1,5 +1,7 @@
 \version "2.12.0"
 
+#(ly:set-option 'warning-as-error #f)
+
 \header {
   texidoc = "The harp-pedal markup function does some sanity checks. All 
 the diagrams here violate the standard (7 pedals with divider after third), so
index 7f19767e21fbe08a275a08baeffbf4cc83b883d0..7d7e36c5af6ac79d0e1ce611e50f1bfb8f43f22b 100644 (file)
@@ -1,5 +1,7 @@
 \version "2.12.0"
 
+#(ly:set-option 'warning-as-error #f)
+
 \header {
   texidoc = "Basic harp diagram functionality, including circled pedal boxes. 
 The third diagram uses an empty string, the third contains invalid characters. 
index 7fddd618c4f48b7a85945c381e87becd695b34d0..f71688487f0ce97b7aa2647ff585c1c32e399da1 100644 (file)
@@ -1,17 +1,19 @@
-\header {
+\version "2.12.0"
 
-  texidoc = "Reset fontname for musicglyph. For unknown glyphs, we print a warning."
+#(ly:set-option 'warning-as-error #f)
 
-}
+\header {
+  texidoc = "Reset fontname for musicglyph.
+For unknown glyphs, we print a warning."
 
-\version "2.12.0"
+}
 
 {
-  c'^\markup
-  {
-    \override #'(font-name . "Sans")
-    { c'est un B \flat \musicglyph #"UNKNOWN-GLYPH" }
-                               % to get \flat, do:
-                               %  \normal-text \flat
+  c'^\markup {
+    \override #'(font-name . "Sans") {
+      c'est un B \flat \musicglyph #"UNKNOWN-GLYPH"
+    }
+    % to get \flat, do:
+    %  \normal-text \flat
   }
 }