1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
% Needed because lilypond-book-preamble.ly sets version-seen
% to #t in order not to require a \version statement for snippets.
#(define version-seen #f)
%% \version "2.21.0"
\header {
texidoc = "This does not produce typeset output but checks that
@code{\\version} statements in included files do not inhibit the
warning in the main file when a @code{\\version} statement is missing
there."
}
\include "deutsch.ly"
#(ly:expect-warning
(G_ "no \\version statement found, please add~afor future compatibility")
(format #f "\n\n\\version ~s\n\n" (lilypond-version)))
|