From: David Kastrup Date: Fri, 14 Aug 2015 13:01:13 +0000 (+0200) Subject: Issue 4561/2: Add regtest for \inherit-acceptability X-Git-Tag: release/2.19.26-1~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c001bb5d89b90e26c03228ddf26a6e85bf4fb967;p=lilypond.git Issue 4561/2: Add regtest for \inherit-acceptability --- diff --git a/input/regression/inherit-acceptability.ly b/input/regression/inherit-acceptability.ly new file mode 100644 index 0000000000..caa31ed1fb --- /dev/null +++ b/input/regression/inherit-acceptability.ly @@ -0,0 +1,22 @@ +\version "2.19.26" + +\header { + texidoc = "@code{\\inherit-acceptability} allows for one context def to be accepted +wherever an existing one is." +} + +\new StaffGroup +<< + \new Staff { \time 3/4 c'2. } + \new TimeLess { \time 3/4 c'2. } +>> + +\layout { + ragged-right = ##t + \context { + \Staff + \name "TimeLess" + \remove "Time_signature_engraver" + } + \inherit-acceptability "TimeLess" "Staff" +}