]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/framework-ps.scm
[scm]: Use two spaces after full stop in doc strings.
[lilypond.git] / scm / framework-ps.scm
index 8949fec9457d46e24b2e4173b7be5d4a9040635a..da7119901e64c464c8e987ae8d4466f045ff18ec 100644 (file)
@@ -1,6 +1,6 @@
 ;;;; This file is part of LilyPond, the GNU music typesetter.
 ;;;;
-;;;; Copyright (C) 2004--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
+;;;; Copyright (C) 2004--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
 ;;;;
 ;;;; LilyPond is free software: you can redistribute it and/or modify
 ;;;; it under the terms of the GNU General Public License as published by
     (let* ((dir-name (tmpnam))
           (files '())
           (status 0)
-          (embed #f))
+          (embed #f)
+          (cwd (getcwd)))
       (mkdir dir-name #o700)
-      (set! status (ly:system
-                   (format "cd ~a && fondu -force '~a'" dir-name filename)))
+      (chdir dir-name)
+      (set! status (ly:system (list "fondu" "-force" file-name)))
+      (chdir cwd)
       (set! files (dir-listing dir-name))
       (for-each
        (lambda (f)
 (define-public (dump-stencil-as-EPS-with-bbox paper dump-me filename
                                              load-fonts
                                              bbox)
-  "Create an EPS file from stencil DUMP-ME to FILENAME. BBOX has
+  "Create an EPS file from stencil DUMP-ME to FILENAME.  BBOX has
 format (left-x, lower-y, right x, up-y).  If LOAD-FONTS set, include
 fonts inline."
   (define (to-rounded-bp-box box)