From 432c7b1864c54c7838af1284927daa22fe93b18b Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Wed, 22 Aug 2007 19:48:22 -0700 Subject: [PATCH] Remove troublesome LSR snippet. --- ...rstaff-with-spanbars-except---type-bars.ly | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 input/lsr/scheme/semichoirstaff--choirstaff-with-spanbars-except---type-bars.ly 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 - >> - } -} - -- 2.39.2