]> git.donarmstrong.com Git - lilypond.git/commitdiff
FIXME: Manually rename semichoirstaff; to semichoirstaff-. Fixes make dist.
authorJan Nieuwenhuizen <janneke@gnu.org>
Wed, 15 Aug 2007 09:33:21 +0000 (11:33 +0200)
committerJan Nieuwenhuizen <janneke@gnu.org>
Wed, 15 Aug 2007 09:33:21 +0000 (11:33 +0200)
input/lsr/scheme/semichoirstaff--choirstaff-with-spanbars-except---type-bars.ly [new file with mode: 0644]
input/lsr/scheme/semichoirstaff;-choirstaff-with-spanbars-except---type-bars.ly [deleted file]

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 (file)
index 0000000..352ecad
--- /dev/null
@@ -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 (file)
index 352ecad..0000000
+++ /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
-    >>
-  }
-}
-