X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Flily.scm;h=2f589d01ffd04c3f6aef037f36c8969bc8a7e351;hb=babe6c767482e755dd0eb5e06649b5a05027b5c3;hp=c27b381bf100cd83892af7cdf103b4fa00c451f1;hpb=0b544cfb7332615ef809b71b57ab656741311ae1;p=lilypond.git diff --git a/scm/lily.scm b/scm/lily.scm index c27b381bf1..2f589d01ff 100644 --- a/scm/lily.scm +++ b/scm/lily.scm @@ -277,7 +277,7 @@ file to given string.") to a music font.") (point-and-click #t - "Add point & click links to PDF output.") + "Add point & click links to PDF and SVG output.") (paper-size "a4" "Set default paper size.") @@ -411,8 +411,8 @@ messages into errors.") (define-public (ergonomic-simple-format dest . rest) "Like ice-9's @code{format}, but without the memory consumption." (if (string? dest) - (apply simple-format (cons #f (cons dest rest))) - (apply simple-format (cons dest rest)))) + (apply simple-format #f dest rest) + (apply simple-format dest rest))) (define format ergonomic-simple-format) @@ -426,7 +426,7 @@ messages into errors.") v) (define-public (print . args) - (apply format (cons (current-output-port) args))) + (apply format (current-output-port) args)) ;;; General settings. @@ -446,8 +446,6 @@ messages into errors.") (if (ly:get-option 'trace-scheme-coverage) (coverage:enable)) -(define-public parser #f) - (define music-string-to-path-backends '(svg)) @@ -725,6 +723,7 @@ messages into errors.") (,ly:stream-event? . "stream event") (,ly:translator? . "translator") (,ly:translator-group? . "translator group") + (,ly:undead? . "undead container") (,ly:unpure-pure-container? . "unpure/pure container") )) @@ -750,7 +749,7 @@ messages into errors.") (define (dump-profile base last this) (let* ((outname (format #f "~a.profile" (dir-basename base ".ly"))) - (diff (map (lambda (y) (apply - y)) (zip this last)))) + (diff (map - this last))) (ly:progress "\nWriting timing to ~a..." outname) (format (open-file outname "w") "time: ~a\ncells: ~a\n"