From: Graham Percival Date: Tue, 27 May 2003 13:18:03 +0000 (+0000) Subject: Renaming file for consistency (with bar-lines-foo instead of barline-foo). X-Git-Tag: release/1.7.21~65 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ab44d6965ec6af3b58e2ef469b98689a5af64bb0;p=lilypond.git Renaming file for consistency (with bar-lines-foo instead of barline-foo). --- diff --git a/input/test/bar-lines-lyric-only.ly b/input/test/bar-lines-lyric-only.ly new file mode 100644 index 0000000000..5a9c34f566 --- /dev/null +++ b/input/test/bar-lines-lyric-only.ly @@ -0,0 +1,39 @@ +\version "1.7.18" +\header { + +texidoc = "@cindex Bar Line Lyric Only +You can move around Bar_engraver and +Span_bar_engraver if you want bar lines on lyrics." } + + +\score { +\notes \relative c' \context StaffGroup = groupie < + \context Staff = SA { c1 c1 c1} + \context Lyrics \lyrics < + { bla1 die bla } + { foo bar foo } + { foo bar foo } + > + \context Staff = SB { c1 c1 c1} + + > + + +\paper { +\translator { + \LyricsVoiceContext + \consists Bar_engraver + % need procedure, since lyrics doesn't have a staff_sym engraver. + BarLine \override #'bar-size-procedure = #(lambda (x) 3.0) +} + +\translator { + \LyricsContext + \consists "Span_bar_engraver" +} +\translator{ + \StaffGroupContext + \remove "Span_bar_engraver" +} +}} +%% new-chords-done %% diff --git a/input/test/barline-lyric-only.ly b/input/test/barline-lyric-only.ly deleted file mode 100644 index 1b4bef94b5..0000000000 --- a/input/test/barline-lyric-only.ly +++ /dev/null @@ -1,38 +0,0 @@ -\version "1.7.18" -\header { - -texidoc = "You can move around Bar_engraver and -Span_bar_engraver if you want bar lines on lyrics." } - - -\score { -\notes \relative c' \context StaffGroup = groupie < - \context Staff = SA { c1 c1 c1} - \context Lyrics \lyrics < - { bla1 die bla } - { foo bar foo } - { foo bar foo } - > - \context Staff = SB { c1 c1 c1} - - > - - -\paper { -\translator { - \LyricsVoiceContext - \consists Bar_engraver - % need procedure, since lyrics doesn't have a staff_sym engraver. - BarLine \override #'bar-size-procedure = #(lambda (x) 3.0) -} - -\translator { - \LyricsContext - \consists "Span_bar_engraver" -} -\translator{ - \StaffGroupContext - \remove "Span_bar_engraver" -} -}} -%% new-chords-done %%