From: Graham Percival Date: Tue, 27 May 2003 12:56:00 +0000 (+0000) Subject: Renaming file to come later in alphabetical order (specifically, right X-Git-Tag: release/1.7.21~68 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a10f370c2cbdcd4527cfef63f07b4617329e8f3b;p=lilypond.git Renaming file to come later in alphabetical order (specifically, right after bar-number-every-fifth.ly). --- diff --git a/input/test/bar-number-every-5-reset.ly b/input/test/bar-number-every-5-reset.ly deleted file mode 100644 index 1871a8d34b..0000000000 --- a/input/test/bar-number-every-5-reset.ly +++ /dev/null @@ -1,28 +0,0 @@ -\version "1.7.18" - -\header { - texidoc = " -If you would like the bar numbers to appear at regular intervals, but -not starting from measure zero, you can use the context function, -@code{set-bar-number-visibility}, to automatically set -@code{barNumberVisibility} so that the bar numbers appear at regular -intervals, starting from the @code{\applycontext}. -" - -} - -resetBarnum = \context Score \applycontext - #(set-bar-number-visibility 4) -\score { - < - \notes \transpose c c'' { - \property Score.BarNumber \override #'break-visibility =#end-of-line-invisible - \property Score.RehearsalMark \override #'padding = #2.5 - \mark "A" \resetBarnum - \repeat unfold 10 c1 - \mark \default \resetBarnum - \repeat unfold 8 c - \bar "|." - } - > -} diff --git a/input/test/bar-number-every-five-reset.ly b/input/test/bar-number-every-five-reset.ly new file mode 100644 index 0000000000..2a68dd0c71 --- /dev/null +++ b/input/test/bar-number-every-five-reset.ly @@ -0,0 +1,30 @@ +\version "1.7.18" +% renamed file to bar-number-every-five-reset.ly from bar-number-every-5-reset.ly +% so that bar-number-every-fifth.ly will appear before this file. + +\header { + texidoc = "@cindex Bar Number Every Fifth Reset +If you would like the bar numbers to appear at regular intervals, but +not starting from measure zero, you can use the context function, +@code{set-bar-number-visibility}, to automatically set +@code{barNumberVisibility} so that the bar numbers appear at regular +intervals, starting from the @code{\applycontext}. +" + +} + +resetBarnum = \context Score \applycontext + #(set-bar-number-visibility 4) +\score { + < + \notes \transpose c c'' { + \property Score.BarNumber \override #'break-visibility =#end-of-line-invisible + \property Score.RehearsalMark \override #'padding = #2.5 + \mark "A" \resetBarnum + \repeat unfold 10 c1 + \mark \default \resetBarnum + \repeat unfold 8 c + \bar "|." + } + > +}