lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Unaccepted #t


From: Urs Liska
Subject: Re: Unaccepted #t
Date: Mon, 09 Dec 2013 13:30:48 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.1.1

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]