From: Jan Nieuwenhuizen Date: Thu, 16 Jun 2005 19:11:55 +0000 (+0000) Subject: (make-ps-images): Use ~S instead of single X-Git-Tag: release/2.6.0~40 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=455572fe719452fb6d3b0fdad7d38b8480a8338d;p=lilypond.git (make-ps-images): Use ~S instead of single quoted ~s. This should fix PNG output on Windows; single quotes are regular characters on Windows. --- diff --git a/ChangeLog b/ChangeLog index 62cb8fba73..f35db8fa00 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-06-16 Jan Nieuwenhuizen + + * scm/ps-to-png.scm (make-ps-images): Use ~S instead of single + quoted ~s. This should fix PNG output on Windows; single quotes + are regular characters on Windows. + 2005-06-16 Graham Percival * Documentation/user/basic-notation.itely: include ChoirStaff diff --git a/scm/ps-to-png.scm b/scm/ps-to-png.scm index 5df74ca516..18462c724a 100644 --- a/scm/ps-to-png.scm +++ b/scm/ps-to-png.scm @@ -101,10 +101,10 @@ -dNOPAUSE\ -dTextAlphaBits=4\ -sDEVICE=png16m\ - -sOutputFile='~a'\ + -sOutputFile=~S\ -sPAPERSIZE=~a\ -r~S\ - '~a'\ + ~S\ -c showpage\ -c quit" (search-gs) @@ -118,9 +118,9 @@ -dNOPAUSE\ -dTextAlphaBits=4\ -sDEVICE=png16m\ - -sOutputFile='~a'\ + -sOutputFile=~S\ -r~S\ - '~a'\ + ~S\ -c quit" (search-gs) (if verbose? "" "-q")