From: Matthias Kilian Date: Mon, 13 Nov 2006 23:46:09 +0000 (+0100) Subject: close output ports explicitly. X-Git-Tag: release/2.10.1-1~21 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f1ccb998949dbf54b23ad3242fbfc9ff80e3a898;p=lilypond.git close output ports explicitly. (cherry picked from 839c2659eee1a4ad10d0b2c08f9bcf8914e03111 commit) --- diff --git a/scm/framework-eps.scm b/scm/framework-eps.scm index ad5125d3dd..f7ee1054a9 100644 --- a/scm/framework-eps.scm +++ b/scm/framework-eps.scm @@ -97,6 +97,9 @@ stencil, so LaTeX includegraphics doesn't fuck up the alignment." (display "@c eof - 'eof' is a Makefile marker; do not remove. " texi-system-port) (display "% eof - 'eof' is Makefile marker; do not remove. " tex-system-port) + (close-output-port texi-system-port) + (close-output-port tex-system-port) + (dump-infinite-stack-EPS stencils) (postprocess-output book framework-eps-module (format "~a.eps" basename) (ly:output-formats))))