]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/accidental-tie.ly
(texidoc): cleanup.
[lilypond.git] / input / regression / accidental-tie.ly
1 \version "2.3.17"
2
3 \header {
4
5     texidoc = "The second and third notes should not get accidentals,
6     because they are tied to a note.  However, an accidental is
7     present if the line is broken at the tie, which happens for the G
8     sharp."
9
10 }
11
12 mus =   \relative c' {
13     f1~
14     f2~f4 % ~ f8
15     fis8  gis8 ~
16     \break
17     gis1
18 }
19
20 \score {
21      <<
22         \new NoteNames \mus
23         \new Voice { \key g \major \mus }
24     >>
25     \paper {
26         raggedright = ##t
27     }
28 }