Comment #1 on issue 3034 by [email protected]: DOC: Thumb but also "finger changes" should be Fingering
http://code.google.com/p/lilypond/issues/detail?id=3034
Instead of c-\tweak #'text #(markup #:tied-lyric "2~3") -0 you should rather be writing c-\tweak text \markup \tied-lyric "2~3" -0 as there is no point in calling the Scheme interpreter when it is not actually required to do the job. It is an additional cost easily avoided, and it is particularly pointless to call the markup macro at top level. LilyPond can perfectly well assemble markups on its own, and it is pretty efficient doing so (it does so using a fast parser and C code).
