From: Jan Nieuwenhuizen Date: Wed, 15 Aug 2007 09:33:21 +0000 (+0200) Subject: FIXME: Manually rename semichoirstaff; to semichoirstaff-. Fixes make dist. X-Git-Tag: release/2.11.30-1~15^2~11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=13630fbfd2e50fde00a247551d305b17e7c8a40f;p=lilypond.git FIXME: Manually rename semichoirstaff; to semichoirstaff-. Fixes make dist. --- diff --git a/input/lsr/scheme/semichoirstaff--choirstaff-with-spanbars-except---type-bars.ly b/input/lsr/scheme/semichoirstaff--choirstaff-with-spanbars-except---type-bars.ly new file mode 100644 index 0000000000..352ecada08 --- /dev/null +++ b/input/lsr/scheme/semichoirstaff--choirstaff-with-spanbars-except---type-bars.ly @@ -0,0 +1,40 @@ +%% Do not edit this file; it is auto-generated from LSR! +\version "2.10.12" + +\header { texidoc = " +If you wish to typeset \"|.\", etc, style spanbars on a ChoirStaff, you +can add the span_bar_engraver, and instruct it to omit the \"|\"-style +bars. In this example I create a new context, SemiChoirStaff, that does +this. +" } + +\version "2.10.12" + +mus = { \clef F c d e f c d e f c d e f c d e f \bar "||" c d e f c d e f c d e f \bar "|." } + +\layout { + \context { + \ChoirStaff + \name "SemiChoirStaff" + \consists "Span_bar_engraver" + \override SpanBar #'stencil = + #(lambda (a) + (if (string=? (ly:grob-property a 'glyph-name) "|") + (set! (ly:grob-property a 'glyph-name) "")) + (ly:span-bar::print a)) + } + \context { + \Score + \accepts SemiChoirStaff + } +} + +\score { + \new SemiChoirStaff { + << + \new Staff \mus + \new Staff \mus + >> + } +} + diff --git a/input/lsr/scheme/semichoirstaff;-choirstaff-with-spanbars-except---type-bars.ly b/input/lsr/scheme/semichoirstaff;-choirstaff-with-spanbars-except---type-bars.ly deleted file mode 100644 index 352ecada08..0000000000 --- a/input/lsr/scheme/semichoirstaff;-choirstaff-with-spanbars-except---type-bars.ly +++ /dev/null @@ -1,40 +0,0 @@ -%% Do not edit this file; it is auto-generated from LSR! -\version "2.10.12" - -\header { texidoc = " -If you wish to typeset \"|.\", etc, style spanbars on a ChoirStaff, you -can add the span_bar_engraver, and instruct it to omit the \"|\"-style -bars. In this example I create a new context, SemiChoirStaff, that does -this. -" } - -\version "2.10.12" - -mus = { \clef F c d e f c d e f c d e f c d e f \bar "||" c d e f c d e f c d e f \bar "|." } - -\layout { - \context { - \ChoirStaff - \name "SemiChoirStaff" - \consists "Span_bar_engraver" - \override SpanBar #'stencil = - #(lambda (a) - (if (string=? (ly:grob-property a 'glyph-name) "|") - (set! (ly:grob-property a 'glyph-name) "")) - (ly:span-bar::print a)) - } - \context { - \Score - \accepts SemiChoirStaff - } -} - -\score { - \new SemiChoirStaff { - << - \new Staff \mus - \new Staff \mus - >> - } -} -