]> git.donarmstrong.com Git - lilypond.git/blob - ly/init.ly
* scm/backend-library.scm (postscript->png): Fix comment and png
[lilypond.git] / ly / init.ly
1 %% Toplevel initialisation file. 
2
3 #(define-public midi-debug  #f)
4
5
6 \version "2.4.0"
7
8 \include "declarations-init.ly"
9
10
11 #(ly:set-option 'new-relative)
12 #(define toplevel-scores '())
13 #(define $globalheader #f)
14 #(define version-seen? #f)
15
16 #(if (defined? 'set-debug-cell-accesses!) (set-debug-cell-accesses 5000))
17
18 \maininput
19 %% there is a problem at the end of the input file
20
21 %%
22 %% Above and below comments compensate for the parser's look-ahead.
23 %%
24
25 #(if (and (ly:get-option 'old-relative)
26       (defined? 'input-file-name)
27       (not (ly:get-option 'old-relative-used)))
28   (ly:warn (string-append
29             "\n"
30             input-file-name ": old relative compatibility was not used."
31         )))%% there is a problem at the end of the input file
32
33 #(if (not version-seen?)
34   (version-not-seen-message))
35
36 #(if (pair? toplevel-scores)
37   (ly:parser-print-book parser
38    (apply ly:make-book $defaultpaper $globalheader toplevel-scores)))
39