From 455572fe719452fb6d3b0fdad7d38b8480a8338d Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Thu, 16 Jun 2005 19:11:55 +0000 Subject: [PATCH] (make-ps-images): Use ~S instead of single quoted ~s. This should fix PNG output on Windows; single quotes are regular characters on Windows. --- ChangeLog | 6 ++++++ scm/ps-to-png.scm | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) 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") -- 2.39.5