]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/accidental-tie.ly
Imported Upstream version 2.18.0
[lilypond.git] / input / regression / accidental-tie.ly
index a113d19dec1fea9011ad326d15a707a04d2f82c8..f69a7a85756d283eb59f973584dcfa00ff0af944 100644 (file)
@@ -1,28 +1,34 @@
-\version "2.1.36"
+\version "2.17.6"
 
 \header {
-
-    texidoc = "The second and third notes should not get accidentals,
+  texidoc = "The second and third notes should not get accidentals,
     because they are tied to a note.  However, an accidental is
     present if the line is broken at the tie, which happens for the G
-    sharp."
+    sharp.
 
+    The presence of an accidental after a broken tie can be
+    overridden.
+"
 }
-
-mus = \notes   \relative c' {
-    f1~
-    f2~f4 % ~ f8
-    fis8  gis8 ~
-    \break
-    gis1
+\layout {
+  ragged-right = ##t
 }
 
-\score {
-    \notes <<
-       \new NoteNames \mus
-       \new Voice { \key g \major \mus }
-    >>
-    \paper {
-       raggedright = ##t
-    }
+mus =          \relative c' {
+  f1~
+  f2~f4 % ~ f8
+  fis8  gis8 ~
+  \break
+  gis1
+  \override Accidental.hide-tied-accidental-after-break = ##t
+  f1~
+  f2~f4 % ~ f8
+  fis8  gis8 ~
+  \break
+  gis1
 }
+
+<<
+  \new NoteNames \mus
+  \new Voice { \key g \major \mus }
+>>