]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/slur-multiple-linebreak.ly
Add newlines at EOF where appropriate.
[lilypond.git] / input / regression / slur-multiple-linebreak.ly
1 \version "2.15.5"
2
3 #(ly:set-option 'warning-as-error #f)
4 #(ly:expect-warning (_ "already have slur"))
5
6 \header {
7   texidoc = "An additional opening slur during a running slur should be ignored
8 (and a warning printed), but never influence the slur's extents."
9 }
10
11 \paper { ragged-right = ##t }
12
13 \relative c' {
14   \key fis \major
15   c1(
16   \break
17   a2 b4 c)
18 }
19
20 \relative c' {
21   \key fis \major
22   c1(
23   \break
24   a2( b4 c)
25 %   ^ extra SlurEvent
26 }
27 %% END