LEFT | RIGHT |
(no file at all) | |
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--2011 Jan Nieuwenhuizen <janneke@gnu.org> | 3 ;;;; Copyright (C) 1998--2011 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 "tablature.scm" | 455 "tablature.scm" |
456 "harp-pedals.scm" | 456 "harp-pedals.scm" |
457 "define-woodwind-diagrams.scm" | 457 "define-woodwind-diagrams.scm" |
458 "display-woodwind-diagrams.scm" | 458 "display-woodwind-diagrams.scm" |
459 "predefined-fretboards.scm" | 459 "predefined-fretboards.scm" |
460 "define-grob-properties.scm" | 460 "define-grob-properties.scm" |
461 "define-grobs.scm" | 461 "define-grobs.scm" |
462 "define-grob-interfaces.scm" | 462 "define-grob-interfaces.scm" |
463 "define-stencil-commands.scm" | 463 "define-stencil-commands.scm" |
464 "titling.scm" | 464 "titling.scm" |
| 465 "text.scm" |
465 | 466 |
466 "paper.scm" | 467 "paper.scm" |
467 "backend-library.scm" | 468 "backend-library.scm" |
468 "x11-color.scm")) | 469 "x11-color.scm")) |
469 ;; - Files to be loaded last | 470 ;; - Files to be loaded last |
470 (define init-scheme-files-tail | 471 (define init-scheme-files-tail |
471 ;; - must be after everything has been defined | 472 ;; - must be after everything has been defined |
472 '("safe-lily.scm")) | 473 '("safe-lily.scm")) |
473 ;; | 474 ;; |
474 ;; Now construct the load list | 475 ;; Now construct the load list |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
904 (ly:exit 0 #f))))) | 905 (ly:exit 0 #f))))) |
905 | 906 |
906 (define (gui-no-files-handler) | 907 (define (gui-no-files-handler) |
907 (let* ((ly (string-append (ly:effective-prefix) "/ly/")) | 908 (let* ((ly (string-append (ly:effective-prefix) "/ly/")) |
908 ;; FIXME: soft-code, localize | 909 ;; FIXME: soft-code, localize |
909 (welcome-ly (string-append ly "Welcome_to_LilyPond.ly")) | 910 (welcome-ly (string-append ly "Welcome_to_LilyPond.ly")) |
910 (cmd (get-editor-command welcome-ly 0 0 0))) | 911 (cmd (get-editor-command welcome-ly 0 0 0))) |
911 (ly:message (_ "Invoking `~a'...\n") cmd) | 912 (ly:message (_ "Invoking `~a'...\n") cmd) |
912 (system cmd) | 913 (system cmd) |
913 (ly:exit 1 #f))) | 914 (ly:exit 1 #f))) |
LEFT | RIGHT |