diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2005-04-16 12:52:29 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2005-04-16 12:52:29 +0000 |
commit | ace9039a15a1595a13e58927842647e7e4c90e78 (patch) | |
tree | 8cff4a2dbb4f8cefae37a6819107aa35d59edd47 /scm | |
parent | 6f67a434a5f3153cd4b8271f6358dd414941d3f3 (diff) |
* configure.in (gui_b): make bison optional.
* lily/GNUmakefile (OUT_DIST_FILES): dist parser and lexer.
Diffstat (limited to 'scm')
-rw-r--r-- | scm/framework-eps.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scm/framework-eps.scm b/scm/framework-eps.scm index 348929c1c4..976a41d077 100644 --- a/scm/framework-eps.scm +++ b/scm/framework-eps.scm @@ -46,12 +46,19 @@ (ly:message (_ "Writing ~a...") texi-system-name) (dump-stencils-as-separate-EPS stencils 1) (for-each (lambda (c) + (if (< 0 c) + (begin + (display "\\ifx\\betweenLilyPondSystem \\undefined\n" tex-system-port) + (display " \\relax\n" tex-system-port) + (display "\\else\n" tex-system-port) + (display (format + " \\betweenLilyPondSystem{~a}\n" c) tex-system-port) + (display "\\fi\n" tex-system-port))) (display (format "\\includegraphics{~a-~a.eps}\n" basename (1+ c)) tex-system-port) (display (format "@image{~a-~a}\n" basename (1+ c)) texi-system-port)) (iota (length stencils))) - (display "@c eof - 'eof' is a Makefile marker; don not remove. " texi-system-port) (display "% eof - 'eof' is Makefile marker; do not remove. " tex-system-port) |