X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Flily.scm;h=4b3c9c7e1c4cad55c64a53fe611d1effcf692612;hb=0ccac4adf83c431b5d1c89bebfd6a916369328dd;hp=d4553eec19fe74103f772abcf001a7fe7225cf54;hpb=8ef5f99e63cc9e52c7c0071cde4d99e057d10329;p=lilypond.git diff --git a/scm/lily.scm b/scm/lily.scm index d4553eec19..4b3c9c7e1c 100644 --- a/scm/lily.scm +++ b/scm/lily.scm @@ -963,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)))