]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tie-arpeggio.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / tie-arpeggio.ly
index 0f05b5358518af8cac3ec030ee6892103317712a..eabcaa78cb7779c8244ca9980d661d785810f1e8 100644 (file)
@@ -1,18 +1,21 @@
+\version "2.19.21"
+#(ly:set-option 'warning-as-error #f)
+#(ly:expect-warning (_ "unterminated tie"))
+#(ly:expect-warning (_ "unterminated tie"))
+
 \header
 {
 
-  texidoc = "when @code{tieWaitForNote} is set, the right-tied note
- does not have to follow the lef-tied note directly. When
- @code{tieWaitForNote} is set to false, any tie will erase all pending
- ties."
+  texidoc =
+  "when @code{tieWaitForNote} is set, the right-tied note does not
+ have to follow the lef-tied note directly. When @code{tieWaitForNote}
is set to false, any tie will erase all pending ties."
   
 }
 
-\version "2.5.12"
-
-\paper { raggedright =  ##t }
+\paper { ragged-right =  ##t }
 \relative {
-  c~ e~ g~ <c, e g>
+  c'~ e~ g~ <c, e g>
   \set tieWaitForNote = ##t
   c~ e~ g~ <c, e g>
 
@@ -21,4 +24,5 @@
   \set tieWaitForNote = ##f
   <c e> ~
   <c e c'>
+
 }