I seem to have a bug when I set a title in the header in a lilypond environment, but no poet:
% good (no title, no poet)
\begin{lilypond}
\relative c' { c d e f g a b c c d e f g a b c c d e f g a b c c d e f g a b c }
\end{lilypond}
% bad (title, but no poet)
\begin{lilypond}
\header {
title = "Mein Test"
poet = " " % same is "" and ##f
composer = " "
}
\score {
\new Staff {
\relative c' { c d e f g a b c c d e f g a b c c d e f g a b c c d e f g a b c }
}
}
\end{lilypond}
% good (title and non-empty poet)
\begin{lilypond}
\header {
title = "Mein Test"
poet = "Bach"
composer = " "
}
\score {
\new Staff {
\relative c' { c d e f g a b c c d e f g a b c c d e f g a b c c d e f g a b c }
}
}
\end{lilypond}

Any idea what is going wrong here?
I seem to have a bug when I set a title in the header in a lilypond environment, but no poet:
Any idea what is going wrong here?