]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/lily.scm
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / scm / lily.scm
index 4a5f5e96c9dcf53f1601875827892c7fe553a78d..4b3c9c7e1c4cad55c64a53fe611d1effcf692612 100644 (file)
@@ -276,6 +276,9 @@ regression testing.")
      #f
      "Pad left edge of the output EPS bounding box by
 given amount (in mm).")
+    (font-export-dir
+     #f
+     "Directory for exporting fonts as PostScript files.")
     (gs-load-fonts
      #f
      "Load fonts via Ghostscript.")
@@ -960,7 +963,11 @@ PIDs or the number of the process."
             (remove string-null?
                     (append-map
                      (lambda (f)
-                       (string-split (string-delete (ly:gulp-file f) #\cr) #\nl))
+                       (string-split
+                         (if (guile-v2)
+                             (string-delete #\cr (ly:gulp-file f))
+                             (string-delete (ly:gulp-file f) #\cr))
+                         #\nl))
                      files))))
   (if (and (number? (ly:get-option 'job-count))
            (>= (length files) (ly:get-option 'job-count)))