]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/ps-to-png.scm
Doc-it: update texidocs' committishes
[lilypond.git] / scm / ps-to-png.scm
index caffb9aeda8d3dd717d607917684cddaf9a009b6..5e78d0c7c0d3997267972f5d11053a3cc0d8bbb5 100644 (file)
@@ -1,6 +1,6 @@
 ;;;; This file is part of LilyPond, the GNU music typesetter.
 ;;;;
-;;;; Copyright (C) 2005--2011 Jan Nieuwenhuizen <janneke@gnu.org>
+;;;; Copyright (C) 2005--2012 Jan Nieuwenhuizen <janneke@gnu.org>
 ;;;;
 ;;;; LilyPond is free software: you can redistribute it and/or modify
 ;;;; it under the terms of the GNU General Public License as published by
 ;; copy of ly:system. ly:* not available via lilypond-ps2png.scm
 (define (my-system be-verbose exit-on-error cmd)
   (define status 0)
-  (if be-verbose
-      (begin
-       (format (current-error-port) (_ "Invoking `~a'...") cmd)
-       (newline (current-error-port))))
+  (ly:debug (_ "Invoking `~a'...\n") cmd)
   (set! status (system cmd))
   (if (not (= status 0))
       (begin
-       (format (current-error-port)
-               (format #f (_ "~a exited with status: ~S") "GS" status))
+       (ly:error (_ "~a exited with status: ~S") "GS" status)
        (if exit-on-error (exit 1))))
   status)