diff options
author | Erich Eckner <git@eckner.net> | 2021-02-05 20:15:52 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2021-02-05 20:15:52 +0100 |
commit | 47f2e9b8bd6bd988638bd44907ff18d418f5a776 (patch) | |
tree | 006219c1666d2251f83a0cab56039e9211a9c856 /Das_Lieben_bringt_grosz_Freud | |
parent | e8d6350d3047082562882631e30cb34cad05b9ed (diff) | |
download | Musik-47f2e9b8bd6bd988638bd44907ff18d418f5a776.tar.xz |
Das_Lieben_bringt_grosz_Freud/satz.ly: ifdefs ordentlich escapen
Diffstat (limited to 'Das_Lieben_bringt_grosz_Freud')
-rw-r--r-- | Das_Lieben_bringt_grosz_Freud/satz.ly | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Das_Lieben_bringt_grosz_Freud/satz.ly b/Das_Lieben_bringt_grosz_Freud/satz.ly index 9c6e086..a694d74 100644 --- a/Das_Lieben_bringt_grosz_Freud/satz.ly +++ b/Das_Lieben_bringt_grosz_Freud/satz.ly @@ -9,17 +9,17 @@ \new Voice = sopran { \global \voiceOne \sopranMelodie } \new Voice = alt { \global \voiceTwo \altMelodie } >> - ifdef(`STR_1',\new Lyrics \lyricsto alt { \textI }) - ifdef(`STR_2',\new Lyrics \lyricsto alt { \textII }) - ifdef(`STR_3',\new Lyrics \lyricsto alt { \textIII }) + ifdef(`STR_1',`\new Lyrics \lyricsto alt { \textI }') + ifdef(`STR_2',`\new Lyrics \lyricsto alt { \textII }') + ifdef(`STR_3', \new Lyrics \lyricsto alt { \textIII }') \new Staff << \new Voice = maenner { \global \clef "bass" \oneVoice \maennerPausen } \new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie } \new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie } >> - ifdef(`STR_1',\new Lyrics \lyricsto bass { \bassTextI }) - ifdef(`STR_2',\new Lyrics \lyricsto bass { \bassTextII }) - ifdef(`STR_3',\new Lyrics \lyricsto bass { \bassTextIII }) + ifdef(`STR_1',`\new Lyrics \lyricsto bass { \bassTextI }') + ifdef(`STR_2',`\new Lyrics \lyricsto bass { \bassTextII }') + ifdef(`STR_3',`\new Lyrics \lyricsto bass { \bassTextIII }') >> \layout { indent = #0 |