]> git.donarmstrong.com Git - lilypond.git/blob - ly/init.ly
f0d780b267d62ee0a69fc75071178551756c9e57
[lilypond.git] / ly / init.ly
1 % Toplevel initialisation file. 
2
3 #(define-public point-and-click #f)
4 #(define-public midi-debug #f)
5
6
7 \version "1.9.8"
8
9 \include "declarations-init.ly"
10
11
12 #(ly:set-option 'new-relative)
13 #(ly:set-point-and-click #f)
14
15 \maininput
16
17 #(if (and (ly:get-option 'old-relative)
18       (not (ly:get-option 'old-relative-used)))
19   (ly:warn (string-append
20             "\n"
21             input-file-name ": old relative compatibility was not used.")))
22
23
24 #(if (ly:get-option 'verbose)
25   (begin
26    (gc)
27    (write (gc-stats) (current-error-port))
28    ))
29