X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Flily.scm;h=086d80f09f4d2b3e86e8438d4311a7d352002dc6;hb=bb91de5b7f8c4f753452730101c2422946067cc3;hp=8344f80a8efa6ef8f382163c42e950c3d3e6db1c;hpb=5c14a087ca6cbd665fd631452b7b1283ba0387c3;p=lilypond.git diff --git a/scm/lily.scm b/scm/lily.scm index 8344f80a8e..086d80f09f 100644 --- a/scm/lily.scm +++ b/scm/lily.scm @@ -2,7 +2,7 @@ ;;;; ;;;; source file of the GNU LilyPond music typesetter ;;;; -;;;; (c) 1998--2007 Jan Nieuwenhuizen +;;;; (c) 1998--2008 Jan Nieuwenhuizen ;;;; Han-Wen Nienhuys ;; Internationalisation: (_i "to be translated") gets an entry in the @@ -31,7 +31,7 @@ ;; - [subject-]-verb-object-object (anti-alias-factor 1 "render at higher resolution and scale down result\nto prevent jaggies in PNG") - (backend ps "which backend to use by default; Options: eps, ps [default], scm, svg, tex, texstr)") + (backend ps "which backend to use by default; Options: eps, null, ps [default], scm, svg)") (check-internal-types #f "check every property assignment for types") (clip-systems #f "Generate cut-out snippets of a score") (datadir #f "LilyPond prefix for data files (Readonly).") @@ -80,6 +80,8 @@ on errors, and print a stack trace.") (resolution 101 "resolution for generating PNG bitmaps") (read-file-list #f "Read files to be processed from command line arguments") + (relative-includes #f "When processing an \\include command, look for the included file +relative to the current file (instead of the root file)") (safe #f "Run safely") (strict-infinity-checking #f "If yes, crash on encountering Inf/NaN.") @@ -87,8 +89,6 @@ on errors, and print a stack trace.") (separate-log-files #f "Output to FILE.log per file.") (trace-memory-frequency #f "Record Scheme cell usage this many times per second, and dump to file.") (trace-scheme-coverage #f "Record coverage of Scheme files") - (ttf-verbosity 0 - "how much verbosity for TTF font embedding?") (show-available-fonts #f "List font names available.") (verbose ,(ly:command-line-verbose?) "value for the --verbose flag") @@ -163,17 +163,9 @@ on errors, and print a stack trace.") (if (ly:get-option 'trace-scheme-coverage) (coverage:enable)) -(define-public tex-backend? - (member (ly:get-option 'backend) '(texstr tex))) - (define-public parser #f) -;; TeX C++ code actually hooks into TEX_STRING_HASHLIMIT -(define-public TEX_STRING_HASHLIMIT 10000000) - - - ;; gettext wrapper for guile < 1.7.2 (if (defined? 'gettext) (define-public _ gettext) @@ -251,8 +243,6 @@ predicates. Print a message at LOCATION if any predicate failed." ;;(define-public (output-framework) (write "hello\n")) -(define output-tex-module - (make-module 1021 (list (resolve-interface '(scm output-tex))))) (define output-ps-module (make-module 1021 (list (resolve-interface '(scm output-ps)))))