CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Jan Nieuwenhuizen <[EMAIL PROTECTED]>   05/06/16 19:11:55

Modified files:
        scm            : ps-to-png.scm 
        .              : ChangeLog 

Log message:
        (make-ps-images): Use ~S instead of single
        quoted ~s.  This should fix PNG output on Windows; single quotes
        are regular characters on Windows.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/scm/ps-to-png.scm.diff?tr1=1.9&tr2=1.10&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.3791&tr2=1.3792&r1=text&r2=text

Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.3791 lilypond/ChangeLog:1.3792
--- lilypond/ChangeLog:1.3791   Thu Jun 16 12:21:17 2005
+++ lilypond/ChangeLog  Thu Jun 16 19:11:55 2005
@@ -1,3 +1,9 @@
+2005-06-16  Jan Nieuwenhuizen  <[EMAIL PROTECTED]>
+
+       * 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  <[EMAIL PROTECTED]>
 
        * Documentation/user/basic-notation.itely: include ChoirStaff
Index: lilypond/scm/ps-to-png.scm
diff -u lilypond/scm/ps-to-png.scm:1.9 lilypond/scm/ps-to-png.scm:1.10
--- lilypond/scm/ps-to-png.scm:1.9      Sun Jun 12 14:11:19 2005
+++ lilypond/scm/ps-to-png.scm  Thu Jun 16 19:11:54 2005
@@ -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")


_______________________________________________
Lilypond-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-cvs

Reply via email to