diff options
author | Erich Eckner <git@eckner.net> | 2021-02-05 20:18:15 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2021-02-05 20:18:15 +0100 |
commit | a7e7c73a42c6be512cab26d431c81b95bb23674e (patch) | |
tree | f68fb2361f95d3a09284cb1602eec1d5cf6224de /Nun_lob_mein_Seel_den_Herren | |
parent | df6760937a873ddb334ac84eedf20df55f73915c (diff) | |
download | Musik-a7e7c73a42c6be512cab26d431c81b95bb23674e.tar.xz |
Nun_lob_mein_Seel_den_Herren/satz.ly: ifdefs ordentlich escapen
Diffstat (limited to 'Nun_lob_mein_Seel_den_Herren')
-rw-r--r-- | Nun_lob_mein_Seel_den_Herren/satz.ly | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Nun_lob_mein_Seel_den_Herren/satz.ly b/Nun_lob_mein_Seel_den_Herren/satz.ly index 5f1e41b..b2b7e5b 100644 --- a/Nun_lob_mein_Seel_den_Herren/satz.ly +++ b/Nun_lob_mein_Seel_den_Herren/satz.ly @@ -11,23 +11,23 @@ \set Score.skipBars = ##t \new Voice = sopran { \global \sopranMelodie } >> - ifdef(`STR_1',\new Lyrics \lyricsto sopran { \sopranTextI }) - ifdef(`STR_4',\new Lyrics \lyricsto sopran { \sopranTextIV }) - ifdef(`STR_5',\new Lyrics \lyricsto sopran { \sopranTextV }) + ifdef(`STR_1',`\new Lyrics \lyricsto sopran { \sopranTextI }') + ifdef(`STR_4',`\new Lyrics \lyricsto sopran { \sopranTextIV }') + ifdef(`STR_5',`\new Lyrics \lyricsto sopran { \sopranTextV }') \new Staff << \set Score.skipBars = ##t \new Voice = alt { \global \altMelodie } >> - ifdef(`STR_1',\new Lyrics \lyricsto alt { \altTextI }) - ifdef(`STR_4',\new Lyrics \lyricsto alt { \altTextIV }) - ifdef(`STR_5',\new Lyrics \lyricsto alt { \altTextV }) + ifdef(`STR_1',`\new Lyrics \lyricsto alt { \altTextI }') + ifdef(`STR_4',`\new Lyrics \lyricsto alt { \altTextIV }') + ifdef(`STR_5',`\new Lyrics \lyricsto alt { \altTextV }') \new Staff << \new Voice = maenner { \global \clef "bass" \maennerMelodie } \new CueVoice = bass { \global \clef "bass" \bassMelodie } >> - ifdef(`STR_1',\new Lyrics \lyricsto maenner { \maennerTextI }) - ifdef(`STR_4',\new Lyrics \lyricsto maenner { \maennerTextIV }) - ifdef(`STR_5',\new Lyrics \lyricsto maenner { \maennerTextV }) + ifdef(`STR_1',`\new Lyrics \lyricsto maenner { \maennerTextI }') + ifdef(`STR_4',`\new Lyrics \lyricsto maenner { \maennerTextIV }') + ifdef(`STR_5',`\new Lyrics \lyricsto maenner { \maennerTextV }') >> \layout { indent = #0 |