Am 09.12.2013 13:00, schrieb Tom van der Hoeven:
The following snippet gives an error because ##t
Why
Tom
\version "2.16.2"
freeformat = #f
\score{
\new Staff <<
\relative c'{ c d e f a g a g a g a g a g a g a g a g a g a g a g a g
a g a g a \break a b f}
>>
\layout {
\context {
\Score
\override NonMusicalPaperColumn #'line-break-permission = ##t
\override NonMusicalPaperColumn #'page-break-permission = ##f
}
}
%\midi{}
}
In order for this to be compiled without errors you'd have to write
freeformat = ##f
#f
is the Scheme representation of "false"
and you need the second # to tell LilyPond that there is going to be a
Scheme expression.
But you don't use that value in your code, so what is it for?
HTH
Urs
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user