]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/accidental-unbroken-tie-spacing.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / accidental-unbroken-tie-spacing.ly
index 7d4e017b7fe6bd2d5c7c4c96dc04eede050829dd..feae702a9ece933d4605d3fc64cc54a51a42fcf5 100644 (file)
@@ -1,28 +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.5.68"
-\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  <g8 h des f> ~ |
-    <g8 h des f>
-  }
-}
-
-Rechts = \context Staff \notes {
-  rechts
+  c'8 b2  <g b des f>8 ~ |
+  <g b des f>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 {
-    linewidth = -3.3 \cm
-  }
-}