>> {
>> \after 2. \!
>> c'1
>> \tweak Hairpin.color #red %% comment/uncomment this line
>> \<
>> }
>
> This should be
>
> {
> \after 2. \!
> c’1
> -\tweak Hairpin.color #red \<
> }
The following also works:
```
{
\after 2. \!
{
c’1
\tweak Hairpin.color #red
\<
}
}
```
Either the `-` before `\tweak` or the braces ensure that `\after` gets
a correct third argument.
Werner
