From 95b6c7e158255b6ec32e7ddd044c0542d49cd974 Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Fri, 16 Dec 2011 14:35:08 +0100 Subject: [PATCH] Ran convert-ly for changed syntax --- orchestrallily.ily | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/orchestrallily.ily b/orchestrallily.ily index f79cb89..4667740 100644 --- a/orchestrallily.ily +++ b/orchestrallily.ily @@ -978,9 +978,9 @@ namedCueDuring = #(define-music-function (parser location cuevoice direction ins ) namedTransposedCueDuring = #(define-music-function (parser location cuevoice direction instrcue instr trans cuemusic) (string? number? string? string? ly:music? ly:music?) #{ - \transposedCueDuring #cuevoice #direction $trans { + \transposedCueDuring #cuevoice #direction #trans { \insertCueText #instrcue - $cuemusic + #cuemusic \insertCueText #instr } #} @@ -990,8 +990,8 @@ namedTransposedCueDuring = #(define-music-function (parser location cuevoice dir setClefCue = #(define-music-function (parser location instr clef) (string? ly:music?) #{ - \once \override Staff.Clef #'font-size = #-3 $clef - \insertCueText $instr + \once \override Staff.Clef #'font-size = #-3 #clef + \insertCueText #instr #} ) % generate a cue music section with instrument names and clef changes @@ -1008,9 +1008,9 @@ cleffedCueDuring = #(define-music-function (parser location cuevoice direction i (string? number? string? ly:music? string? ly:music? ly:music?) #{ \cueDuring #cuevoice #direction { - \tag #'cued \setClefCue #instrcue $clefcue - $cuemusic - \tag #'cued \setClefCue #instr $clefinstr + \tag #'cued \setClefCue #instrcue #clefcue + #cuemusic + \tag #'cued \setClefCue #instr #clefinstr } #} ) @@ -1029,7 +1029,7 @@ namedCueDuringWithClef = #(define-music-function (parser location cuevoice direc #{ \cueDuringWithClef #cuevoice #direction #clefcue { \insertCueText #instrcue - $cuemusic + #cuemusic \insertCueText #instr } #} -- 2.11.4.GIT