Re: generate a warning/error if tag is not specified

2018-04-13 Thread Gianmaria Lari
[ Is there any way to make lilypond complaint with a compilation error/warning in case I don't specify a \keepWithTag or \removeWithTag?] On 13 April 2018 at 15:17, Knute Snortum wrote: > One way would be to use bar line checks (|) and \barNumberCheck: > > %%% Start >

Re: generate a warning/error if tag is not specified

2018-04-13 Thread Knute Snortum
One way would be to use bar line checks (|) and \barNumberCheck: %%% Start \version "2.19.81" var = { \time 3/4 a \tag#'vera a \tag#'verb b a | } {\var} %this should generate a warning {\keepWithTag #'vera \var} %this is ok! {\keepWithTag #'verb \var} %this is ok! {\removeWithTag

generate a warning/error if tag is not specified

2018-04-13 Thread Gianmaria Lari
Suppose that I define a variable so that according to a tag I can generate a a a or a b a Is there any way to make lilypond complaint with a compilation error/warning in case I don't specify a \keepWithTag or \removeWithTag? For example: \version "2.19.81" var = { a \tag#'vera a