From: Valentin Villenave Date: Sun, 13 Jan 2008 18:04:36 +0000 (+0100) Subject: seventh patch from Joe: add regression test for mixed clefs and octavations X-Git-Tag: release/2.11.38-1~87 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5948a3f34a9345c7035f30714a8a2d937f520aa4;p=lilypond.git seventh patch from Joe: add regression test for mixed clefs and octavations --- diff --git a/input/regression/clef-ottava.ly b/input/regression/clef-ottava.ly new file mode 100644 index 0000000000..d01e6c912e --- /dev/null +++ b/input/regression/clef-ottava.ly @@ -0,0 +1,26 @@ + +\header +{ + texidoc = "Ottava brackets and clefs both modify Staff.middleCPosition, +but they don't confuse one another." +} + +\version "2.11.36" + +\layout { ragged-right = ##t} + +\relative c'' { + \clef "alto" + a b c a + #(set-octavation 1) + a b c a + \clef "bass" + a b c a + #(set-octavation 2) + a b c a + \clef "treble" + #(set-octavation -1) + a b c a +} + +