X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Faccidental-unbroken-tie-spacing.ly;h=feae702a9ece933d4605d3fc64cc54a51a42fcf5;hb=24f655ac48ac3703394f1a43c0e2803824eb1b08;hp=9587d656d4fa02f1e320b1929f45e36ba63d7136;hpb=30c15d67dcc56919da38c9b5bdfda0684c1fc964;p=lilypond.git diff --git a/input/regression/accidental-unbroken-tie-spacing.ly b/input/regression/accidental-unbroken-tie-spacing.ly index 9587d656d4..feae702a9e 100644 --- a/input/regression/accidental-unbroken-tie-spacing.ly +++ b/input/regression/accidental-unbroken-tie-spacing.ly @@ -1,29 +1,22 @@ \header { -texidoc = "Tied accidentaled notes (which cause reminder accidentals) don't wreak havoc in -the spacing when unbroken." +texidoc = "Space is allowed for the actual size of accidentals on tied notes." } -\version "1.9.1" -\include "deutsch.ly" - -rechts = \notes \relative c' { +\version "2.19.21" +\paper {ragged-right = ##t } +\relative { \clef treble \time 3/4 - \context Voice { - c8 h2 <>8 ~ | - <>8 - } -} - -Rechts = \context Staff \notes { - rechts + c'8 b2 8 ~ | + 8 r + % Large accidental + \override Staff.Accidental.stencil = + #(lambda (g) + (let ((alt (ly:grob-property g 'alteration))) + (grob-interpret-markup g + (make-circle-markup (number->string alt))))) + bes4 ~ bes ~ | bes ~ bes bes ~ | \break + bes ~ bes bes } -\score { - \rechts - - \paper { - raggedright = ##t - } -}