OLD | NEW |
1 ;;;; This file is part of LilyPond, the GNU music typesetter. | 1 ;;;; This file is part of LilyPond, the GNU music typesetter. |
2 ;;;; | 2 ;;;; |
3 ;;;; Copyright (C) 1998--2012 Jan Nieuwenhuizen <janneke@gnu.org> | 3 ;;;; Copyright (C) 1998--2012 Jan Nieuwenhuizen <janneke@gnu.org> |
4 ;;;; Han-Wen Nienhuys <hanwen@xs4all.nl> | 4 ;;;; Han-Wen Nienhuys <hanwen@xs4all.nl> |
5 ;;;; | 5 ;;;; |
6 ;;;; LilyPond is free software: you can redistribute it and/or modify | 6 ;;;; LilyPond is free software: you can redistribute it and/or modify |
7 ;;;; it under the terms of the GNU General Public License as published by | 7 ;;;; it under the terms of the GNU General Public License as published by |
8 ;;;; the Free Software Foundation, either version 3 of the License, or | 8 ;;;; the Free Software Foundation, either version 3 of the License, or |
9 ;;;; (at your option) any later version. | 9 ;;;; (at your option) any later version. |
10 ;;;; | 10 ;;;; |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 ;; - Main body of files to be loaded | 376 ;; - Main body of files to be loaded |
377 (define init-scheme-files-body | 377 (define init-scheme-files-body |
378 '("file-cache.scm" | 378 '("file-cache.scm" |
379 "define-event-classes.scm" | 379 "define-event-classes.scm" |
380 "define-music-callbacks.scm" | 380 "define-music-callbacks.scm" |
381 "define-music-types.scm" | 381 "define-music-types.scm" |
382 "define-note-names.scm" | 382 "define-note-names.scm" |
383 "c++.scm" | 383 "c++.scm" |
384 "chord-entry.scm" | 384 "chord-entry.scm" |
385 "stencil.scm" | 385 "stencil.scm" |
| 386 "stencil-integral.scm" |
386 "define-markup-commands.scm" | 387 "define-markup-commands.scm" |
387 "markup.scm" | 388 "markup.scm" |
388 "modal-transforms.scm" | 389 "modal-transforms.scm" |
389 "chord-generic-names.scm" | 390 "chord-generic-names.scm" |
390 "chord-ignatzek-names.scm" | 391 "chord-ignatzek-names.scm" |
391 "music-functions.scm" | 392 "music-functions.scm" |
392 "part-combiner.scm" | 393 "part-combiner.scm" |
393 "autochange.scm" | 394 "autochange.scm" |
394 "define-music-properties.scm" | 395 "define-music-properties.scm" |
395 "time-signature-settings.scm" | 396 "time-signature-settings.scm" |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 (ly:exit 0 #f))))) | 873 (ly:exit 0 #f))))) |
873 | 874 |
874 (define (gui-no-files-handler) | 875 (define (gui-no-files-handler) |
875 (let* ((ly (string-append (ly:effective-prefix) "/ly/")) | 876 (let* ((ly (string-append (ly:effective-prefix) "/ly/")) |
876 ;; FIXME: soft-code, localize | 877 ;; FIXME: soft-code, localize |
877 (welcome-ly (string-append ly "Welcome_to_LilyPond.ly")) | 878 (welcome-ly (string-append ly "Welcome_to_LilyPond.ly")) |
878 (cmd (get-editor-command welcome-ly 0 0 0))) | 879 (cmd (get-editor-command welcome-ly 0 0 0))) |
879 (ly:message (_ "Invoking `~a'...\n") cmd) | 880 (ly:message (_ "Invoking `~a'...\n") cmd) |
880 (system cmd) | 881 (system cmd) |
881 (ly:exit 1 #f))) | 882 (ly:exit 1 #f))) |
OLD | NEW |